css - CSS3 Rounded Corners are not working in IE quirks mode -


i have website works in ie 10 browser mode , ie5 quirks document mode. round corners not working in scenario. rounded corners working when change document mode ie 9 standards. want ie 5 quirks document mode.

my css is:

.roundedcorner {     behavior: url(/includes/border-radius.htc);     -moz-border-radius: 30px;     -webkit-border-radius: 30px;     -khtml-border-radius: 30px;     border-radius: 30px;     border-top-left-radius:30px;     border-top-right-radius:30px;     border-bottom-left-radius:30px;     border-bottom-right-radius:30px; } 

quirks mode not support css3, , css behaviors disabled in ie10. can set header ie=edge , forget quirks mode.

<meta http-equiv="x-ua-compatible" content="ie=edge"> 

look @ http://border-radius.com/.

-webkit-border-top-left-radius: 10px; -webkit-border-top-right-radius: 10px; -moz-border-radius-topleft: 10px; -moz-border-radius-topright: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; 

Comments

Popular posts from this blog

java - activate/deactivate sonar maven plugin by profile? -

python - TypeError: can only concatenate tuple (not "float") to tuple -

java - What is the difference between String. and String.this. ? -