I've noticed that in the IE 8 Dev Toolbar's CSS tab, only some of the CSS elements show up. Does anyone know why that happens?
For example, in the CSS file, I might have:
.A
{
cursor: pointer;
color: #09F;
}
.B
{
color: #999;
}
.C:hover
{
text-decoration: underline;
}
But IE8's Dev Toolbar will show:
.A
{
cursor: pointer;
color: #09F;
}
.C:hover
{
text-decoration: underline;
}