Displaying 1 result from an estimated 1 matches for "contrasttrack".
2006 Jun 12
0
IE rendering of Sliders
...properly in IE 6
(and IE 5.5... yes, I know...)
.slider-track {
width:50px;
height:5px;
background-color:gray;
position:relative; /* IE fix */
}
.slider-handle {
width:5px;
height:10px;
background-color:#F00;
cursor:move;
position:absolute; /* IE fix */
}
<div id="contrastTrack" class="slider-track"><div id="contrastHandle"
class="slider-handle"><!-- IE fix --></div></div>
One of the fixes is the HTML comment above tells IE there''s no innerHTML, so
the font-size won''t make the contrastHandle...