Archive for the ‘Links’ Category

Recap of CSS techniques [Link]

Friday, January 4th, 2008

Smashing Magazine has an absolutely wonderful list of CSS techniques vital for any web programmer.

Efficient stylesheets [Link]

Tuesday, December 11th, 2007

This blog post provides a few simple tricks for coding efficient stylesheets — in the sense of having an organised structure which is easy to navigate and to modify. The color grouping seems like the most useful tip.

A simple guide to CSS positioning

Tuesday, November 27th, 2007

BarelyFitz Design has written up a very nice explainer on how to position elements through CSS. Their step four is probably the one that is most easily forgotten: Combining position:relative with position:absolute. In a nutshell, setting a ‘relative’ position on the container element will allow you to position subelements absolutely within that element. And the explainer goes to show how this method can be used for two- or three-column layouts that rival the traditional methods of floating elements.