Jump to content
21/12/2005
What about using css attribute selectors? This isn’t supported in IE yet, but it is in Firefox (1.0.7)#navigation ul li a[href*="about.htm"] { /* styles */ } An example of this technique can be seen here: http://icant.co.uk/csstablegallery/index.php?css=28 (scroll down the table, and you will see one of the links text has been replaced with an image)
#navigation ul li a[href*="about.htm"] {
/* styles */
}
Vote up?
21/12/2005
What about using css attribute selectors? This isn’t supported in IE yet, but it is in Firefox (1.0.7)
#navigation ul li a[href*="about.htm"] {/* styles */}An example of this technique can be seen here: http://icant.co.uk/csstablegallery/index.php?css=28 (scroll down the table, and you will see one of the links text has been replaced with an image)