Forum Moderators: open
Complete list of all valid DTDs [w3.org]
We can expect updates to the list soon...
ncsuk: but why would you ever need to specify a height for a table? It depends on how many rows there are, how big the font is and how much text-wrapping occurs.
Unless of course your (mis-)using it for layout instead of just tabular data? ;)
Psstt..Why not just specify the height in the CSS? <table style="height:200px">
I dont know how to CSS it
Well I just told you one method, you can specify the CSS for each table by using the
style attribute. Alternatively you could give the table an id attribute and then set its style in some CSS at the top of your document (or even better, in an external stylesheet).
e.g.
<table id="nav_table">
in your HTML and then..
#nav_table {
height: 100px;
}
in your CSS.
Pay a visit to the CSS forum if you need some more help. And have a look at Nick_Ws excellent CSS crash courses (in the CSS forum library [webmasterworld.com]) for a good primer.
shame the template they give us doesn't work properly in IE6
Err... you mean, too bad IE6 is too crappy of a browser to render it correctly? ;)
It's such an utter pain to have to trawl through specs looking for those little sods
Well, not any more! :) I just hope everyone noticed that they're using the full DTD...
They should all work, if they don't, it's the browser's fault!
<adding DTD to my HTML editor></adding>