Displaying 1 result from an estimated 1 matches for "contrasthandl".
Did you mean:
contrasthandle
2006 Jun 12
0
IE rendering of Sliders
...dth: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 larger than 10px. Eliminate the
comment, or include a blank space and...