CSS Descendant Selectors

We know that one of the best uses of CSS is its ability to cascade style settings (rules). However, I have seen many website CSS files that do not fully take advantage of some of the most powerful aspects of CSS – descending selectors. I…

CSS Cursors

One thing that CSS allows us to use for screen presentation are alternate cursors. This is not the idea of downloading or forcing a download of a cursor, as was done in the past (though that is possible as well), but instead, we use several…

Straight To Tableless?

Since I recently wrote an article on the benefits of a tableless layout, I felt it prudent to express my views on it in practical application. I personally know many many web developers who work in the industry, and whether these people have multiple clients,…

Lists Using the List Tags

Making Menus The Right Way Seems like a No-Brainer doesn’t it? Except that it is, apparently, not the case. I constantly see web pages with code like this for a vertical navigation bar: <a href="1.html">Link1</a><br /><br /> <a href="2.html">Link2</a><br /><br /> <a href="3.html">Link3</a><br /><br />…