Archive for the 'Web' Category

First Impression of your Website

Thursday, November 29th, 2007

nice blog

Web Developement Cheat Sheets

Monday, August 27th, 2007

Cheat Sheets

Dynamic CSS

Thursday, June 21st, 2007

It should be possible to use following CSS entry:

a[class ^=”col”] {
border-bottom:3px solid green;
}

this entry should display every hyperlink, which class starts with col, with a green bottom line.

* = every where

$ = end of attribute

^ = beginning of attribute

I hope this works in every browser, we will see.