rounded Corner Problems IE
I rounded Div Corner Using This Htc File : Google Code Curved Corner
This Worked Nice in IE6/8 but i set background image in top my div with no-repeat css. now i see my background auto repeat in div. ( with htc file without this worked nice )
width:860px;
margin:0 auto;
margin:10px 0 10px 0;
float:right;
border:#e1e1e1开发者_Python百科 1px solid;
background:url(images/wrapper.png) top center no-repeat;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
-khtml-border-radius: 6px;
border-radius: 6px;
behavior: url(border.htc);
This My Code, How To fix This Problem !? Thanks
see below the link.
http://css3pie.com/
PIE makes Internet Explorer 6-8 capable of rendering several of the most useful CSS3 decoration features.
This is useful for you.
Just add this to your css:
-ms-border-radius: 6px;
Instead of using the .htc file...
精彩评论