RSSAmplifier

Micah Henning · Jun 28, 2012

CSS Attribute Selectors and IE 7

0
Sign in to vote or save

This site does not allow itself to be embedded. You can still read it on the original site — the toolbar below keeps your place in the directory.

If you’ve tried to use attribute selectors in IE 7 and found it to be quite spotty, you’re not alone. Here’s a brief illustration of just what I mean:
tr[height='50%'] { background: #fff; } Though this bit of CSS will work in virtually any browser, it will not work in IE7. But these will:
div[height='50%'] { background: #fff; } tr[height] { background: #fff; } Aside:…

Read on micah.soy

Comments

Nothing yet. Say the first thing.

    Sign in to join the conversation.