简体   繁体   中英

rounded corner with background image on Internet Explorer 6 and above

I need rounded corner with background image for or on IE6 and above

I have tried 1. DD_roundies 2. pie.htc 3. google rounded-corners

any suggestions?

Thanks

There is one CSS3 feature which you can use for rounding up corners:

 .corner {
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
}

this class u refer in whichever browser you need but it will support IE9 and FF 3.6 so on which can support CSS3.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM