I have this css
.circleBase {
border-radius: 50%;
behavior: url(PIE.htc);
}
.type1 {
width: 100px;
height: 100px;
background: yellow;
border: 3px solid red;
}
and this is my html:
<td style="width:25%; height:15%;">
<span runat="server" id ="slSpan" class="circleBase type1">Sl = 320012522121</span>
</td>
the css is working on firefox 20 and gives me a rounded span.but in IE8 it gives me a rectangle.
help pleae