Would make your document 'semantically' invalid. Also, there may be no <hx> tags before the <h1>. I prefer to place my menu before the content in the markup, and most of the time have nested lists, so when I have something like this:Code:<h2 class="structural">Main Menu</h2> <ul id="menu-main"> .... </ul> <div id="content"> <h1>About</h1> .......... </div>
the document becomes 'semantically' invalid.Code:<h2 class="structural">Main Menu</h2> <ul id="menu-main"> <li> <h3><a href="#">Home</a></h3> <ul> .... </ul> </li> ... </ul> <div id="content"> <h1>About</h1> ........... </div>
Also, what do you guys think about physically hiding presentational images(JavaScript libraries can cause this occasionally) when styles are turned off. So basically, css would have full control of the dimensions.
Code:<img src="presentational.gif" width="0" height="0" alt="" />







Bookmarks