PIE icon indicating copy to clipboard operation
PIE copied to clipboard

border-radius not working in IE6,7, and 8

Open prateekjadhwani opened this issue 11 years ago • 2 comments

It seems that even though i am using the following code, there seems to be no border-radius in the above mentioned browsers. And yes, the path to PIE.htc is correct.

here is what it looks like in IE8

screen

Here is what it looks like in chrome

screen2


/* input field styling */
input[type='text'] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance:none;
    border-radius: 5px;
    color:#878787;
    padding-left: 5px;
    font-size: 16px;
    font-weight: bold;
    min-width: 400px;
    height: 35px;
    overflow: hidden;
    background: white;
    border: 2px solid #ccc;
    behavior: url(CSS3PIE/PIE.htc);
}

prateekjadhwani avatar Aug 08 '13 18:08 prateekjadhwani

@prateekjadhwani I got this to work by also adding

        position: relative;
        z-index:1;

pamtaro avatar Aug 13 '13 01:08 pamtaro

@prateekjadhwani The problem has been solved. Please look at this here: http://css3pie.com/documentation/pie-js/

gongph avatar Feb 09 '18 10:02 gongph