Dynamic CSS
Thursday, June 21st, 2007It 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.