Forum: HTML and CSS Mar 7th, 2006 |
| Replies: 5 Views: 2,105 Does that mean you've spotted your style should be a class?
We all have those moments... |
Forum: HTML and CSS Mar 7th, 2006 |
| Replies: 5 Views: 2,105 I think it'll be the browser version, not the version of windows, which is causing you problems. That is, IE5 or 5.5 on the 98 machine, and 6 on the XP machine?
There's no real reason why it... |
Forum: HTML and CSS Nov 30th, 2004 |
| Replies: 11 Views: 5,265 tbody is for grouping td tags.
so in a data table, your column headings would be in a thead tag, the main body of the td cells in a tbody, and the footer info in a tfoot tag. Or something like... |
Forum: HTML and CSS Nov 23rd, 2004 |
| Replies: 11 Views: 5,265 |
Forum: HTML and CSS Nov 23rd, 2004 |
| Replies: 11 Views: 5,265 it validates in xhtml 1.0 strict.
Also http://www.htmlhelp.com/reference/html40/tables/tbody.html
It refers to needing 'one or more' tbody elements in a table.
So I guess you can.
edit: see... |
Forum: HTML and CSS Nov 23rd, 2004 |
| Replies: 11 Views: 5,265 I think:
<thead> is all the column headings, i.e. the first row of most tables
<tbody> is the data under those headings
so technically if you need two tbodies then you must have changed column... |