I have CSS that looks like this...
.ColorSeparatorArea
{
background-color: #3d3d77;
height: 1px;
}
... and then I'm applying that style to a DIV element:
<div class="ColorSeparatorArea"></div>
It works fine in non-IE browsers, but in IE, it sets the height of the div to the height of one line of text and it won't let me go any smaller. Anyone know how to get around this problem?