Re: [css-d] Hide labeled link [a rel]

2009-01-16 Thread Bill Brown
> 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 o

Re: [css-d] Hide labeled link [a rel]

2009-01-16 Thread Brian Funk
Luigi Assom wrote: > I have the following class which style many different links. > > Date > rel="category tag">Mostra Tutti and tag: > > link_i1, rel="tag">link_i2, > > Modifica > > I want to hide all the links labeled rel="tag", maintaining visibility > for the rest of the content. add

[css-d] Hide labeled link [a rel]

2009-01-16 Thread Luigi Assom
Hi all! I hope this mailing list will help. I have the following class which style many different links. Date Mostra Tutti and tag: link_i1, link_i2, Modifica I want to hide all the links labeled rel="tag", maintaining visibility for the rest of the content. Is it possible? How to do th