thepeoplestoolbox
thePeoplesToolbox is a nice repository of bookmarks for popular programming and design sites.
thePeoplesToolbox is a nice repository of bookmarks for popular programming and design sites.
53 CSS-Techniques You Couldnt Live Without is great collection of CSS examples and techniques.
Here's a good base page template using CSS.
I've always like rounded corners in my designs. I've found this extensive list of rounded corner resources.
Here's a new one where you can give the radius of the corner. Also it looks like my fav Nifty Corners has had an update.
Swapnonil Mukherjee offers a good explanation as to Why you should right align form labels. He suggests by showing good examples that you eye must travel a smaller distance to navigate from form field to form field when the labels are right aligned.
Yahoo of all people have a Grid CSS solution for multi-column layouts that's worth looking at.
Someone has come up with a way to have scrollable tables with a fixed header using only CSS. Neat!
Mark Kruger has blogged a tip on colouring alternative rows in HTML using CSS. I've done something similar before, but the use of #currentrow mod 2# is neat.
I now have a better tip. Use BitAnd() like <tr class="rowBackground#BitAnd(query.currentRow,1)#">.