More information about the Underscore mailing list

[_] CSS demons!

Tim Beadle tim.beadle at gmail.com
Tue Oct 16 17:23:31 BST 2007

On 16/10/2007, toby privett <tobyprivett at gmail.com> wrote:
> I tried:
>
> <thead>
> <th></th>
> </thead>
>
> and:
>
> <thead>
> <tr></tr>
> </thead>

Wouldn't you need...

<thead>
  <tr>
    <th></th>
  </tr>
</thead>

...to be valid (if you're using <thead>)?

Tim