Reputation: 196
When I use css3pie file on my button, the element(Button) is no longer visible. But when I Click on where the button should be, it functions properly.. I have no idea whats wrong.. here is my HTML
<input class="btn" type="submit" value="Send">
and my CSS
.btn{
width:130px;
margin-left:95px;
font-weight:bold;
border-radius:28px;
behavior: url(PIE.htc);
}
adding behavior: url(PIE.htc);
makes my element disappear in ie...
Upvotes: 2
Views: 71
Reputation: 15795
Which version of Internet Explorer are you seeing the problem in? Sometimes adding position:relative;
to either this element or it's parent can fix this issue.
Have a look at http://css3pie.com/documentation/known-issues/ too.
Upvotes: 1