I am using an empty div to display a row by setting height to 3px . it works fine in all browsers, but in ie6 div height is displayed with 20px height . It remains the same even for height: 0px. But changes in other properties reflect, but not height, and there is no duplicate css record and inherited value from another div. Can anyone please help
<div id="line"></div>
CSS:
#line { border: none; background-color: #134c7c; height: 3px; margin-bottom: 20px; }
source share