Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Selector question

0 views
Skip to first unread message

CharlesK

unread,
May 14, 2002, 6:03:08 PM5/14/02
to
Hi,

Is it possible to select a html tag like
this <DIV Kind="FilterGroup">
with CSS

If so, how and in which browsers will it work ?

Thanks in advance,
Greetz.

Rowland Shaw

unread,
May 15, 2002, 4:47:40 AM5/15/02
to
The CSS selector you're after would be: (ish)
DIV[Kind="FilterGroup"] { /* blah */ }

However, this would not work in the vast majority of browsers (like, say
IE), so it would be better would be if you did:
<div class="FilterGroup">...</div>
with
.FilterGroup { /* blah */ }
or
div.FilterGroup { /* blah */ }
which is CSS1/Core, and supported from way back in IE3 as well as NS4 about
any other browser I can think of that claims to support CSS


"CharlesK" <a@a.a> wrote...

CharlesK

unread,
May 15, 2002, 7:40:11 AM5/15/02
to

Thanks for the info...

"Rowland Shaw" <spamf...@anotherpointless.org> wrote in message
news:#8KPt0##BHA.2552@tkmsftngp05...

0 new messages