> I want to hide all the links labeled rel="tag", maintaining visibility
> for the rest of the content.

In theory, you could use this attribute selector:
a[rel~=tag]{display:none}

In practice, IE lte 6 do not support the attribute selector. You could 
use a javascript solution for the older IEs or simply progressively 
enhance the site for browsers that support the attribute selector.

-- 
<!--
  ! Bill Brown <macnim...@gmail.com>
  ! Web Developologist, WebDevelopedia.com
-->
______________________________________________________________________
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to