
Re: border radius on input tag within ie6
Hi, I notice a similar problem (testing in IE8 and IE8/mod IE7). What happens is that if I load the behavior in an "input {}" style, PIE completely stops working. If I load it in a class of the input element everything starts working again, even the input box.
To give you an example:
Code:
input {
behavior: url('PIE.htc');
border-radius: 9px;
}
It doesn't work and make to stop working all other previous and subsequents style using PIE.
Code:
.form-text {
behavior: url('PIE.htc');
border-radius: 9px;
}
It works perfectly.