IE CSS3 support fillet

Original link: http://www.cnblogs.com/q460021417/p/4354161.html

Using CSS file plug-in CSS can make IE6 / IE7 / IE8 browser.

Specific CSS code:

 1 .yuan { 
 2 border: 2px solid #C0C0C0; 
 3 -moz-border-radius: 10px; 
 4 -webkit-border-radius: 10px; 
 5 border-radius: 10px; 
 6 position:relative; 
 7 padding:5px; 
 8 background:#FFF; 
 9 z-index:2; 
10 width:330px; 
11 height:200px; 
12 behavior: url(iecss3.htc) 
13 } 

In the CSS using behavior introduced "iecss3.htc" plug-in file to. DIVCSS5 prompt attention, let IE6-IE8 support, we need to "behavior: url (iecss3.htc)" the introduction of CSS code directly in HTML to take effect within the source code file.

Let CSS3 rounded prerequisite IE6-IE8 support:
. 1, behavior: URL (iecss3.htc) must be directly introduced in HTML;
2, position: relative; z-index: 2; must use two position and z-index a CSS property.

< Div class = "Yuan" >  
DIVCSS5 Fillet Example < br >  
CSS3 rounded version instance, < br > 
It supports low version IE6-IE9 browser 
</div>

Renderings:

iecss3.htc Download: http: //www.divcss5.com/uploads/allimg/1307/1_130707203030_1.png

Reproduced in: https: //www.cnblogs.com/q460021417/p/4354161.html

Guess you like

Origin blog.csdn.net/weixin_30685047/article/details/94785767