亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

CSS3 ?? ??? ??

CSS3 ?? ???? ??

?? ?? ??? ?? ??? ?? ???? ?? ???? ???? ???. CSS3? ??? ? ?? ??? ???? ???? ? ??? ??? ??? ??? ?? ???? ?? ?? ??? ????.

  * ?? ?? ???? ????. ??? ??? ??, ?????? ? ??? ??? ???? ??? ? ?? ???? ????.

 * ???? ??? ?????. ???? HTTP ??? ? ?? ?? ??? ? ???? ? ??? ?????.

 * ??? ???? ????. ?? ??(???? ??, ?? ??, ?? ???? ?? ?)??? ?? ??? ????? ???? ??? ??? ??? ? ????. CSS3??? ?? ?? ???? ????.

CSS3 border-radius ??

?? ??:

 border-radius: none | <length>{1,4} [/ < ;length>{1,4} ]?

? ??:

 <length>: ?? ??? ??? ?? ???? ??? ?? ????. ???? ? ????.

??? ??:

Border-radius? ??????. "/" ?? ?? ?? ?? ???? ?? "/" ?? ?? ?? ??? ???? "/" ?? ?? ?? ??? ?????. "/"? ??? ?? ? ?? ??? ?????. ?? ? 4?? ?? ????, ?????, ?????, ???? ??? ?????, ?? ??? ?? ??? ???? ???.

1. ??? ????. ?? ???? ?? ?, ??? ?, ??? ??, ?? ??? ? ?? ?? ?????.

 2. ? ?? ?? ?? ?? ??? ??? ??? ?? ? ?? ?? ??? ??? ??? ?? ??? ?? ? ?? ?? ????.

 3 , ? ?? ?? ????. ? ?? ?? ?? ??? ???? ????. ? ?? ?? ??? ??? ?? ??? ???? ????, ? ?? ?? ??? ??? ?????.

4. ?? 4?? ??? ? ?? ?? ?? ?, ? ?? ?? ??? ?, ? ?? ?? ??? ??, ? ?? ?? ?? ??? ?????.

?? ?? ??? ????.

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"> 
<title>php中文網(wǎng)(php.cn)</title> 
<style type="text/css">  
    div
    {
     width: 150px;
     height: 80px;
     border: 2px solid #f36;
        border-radius: 20px;
     background: #ccc;
    }
</style>
</head>
    <body>
    <div> </div>
    </body>    
</html>

?? ?? ? ? ????.

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"> 
<title>php中文網(wǎng)(php.cn)</title> 
<style type="text/css">  
    div
    {
     width: 150px;
     height: 80px;
     border: 2px solid #f36;
        border-radius: 30px 20px;
     background: #ccc;
    }
</style>
</head>
    <body>
    <div> </div>
    </body>    
</html>

?? ?? ? ? ????.

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"> 
<title>php中文網(wǎng)(php.cn)</title> 
<style type="text/css">  
    div
    {
     width: 150px;
     height: 80px;
     border: 2px solid #f36;
     border-radius: 30px 20px 0;
     background: #ccc;
    }
</style>
</head>
    <body>
    <div> </div>
    </body>    
</html>

?? ?? 4? ????.

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"> 
<title>php中文網(wǎng)(php.cn)</title> 
<style type="text/css">  
    div
    {
     width: 150px;
     height: 80px;
     border: 2px solid #f36;
     border-radius: 30px 20px 0 40px;
     background: #ccc;
    }
</style>
</head>
    <body>
    <div> </div>
    </body>    
</html>

???? ??

IE 9, Opera 10.5, Safari 5, Chrome 4 ? Firefox 4? ?? ?? border-radius ??? ?????. Safari ? Chrome? ?? ??? -webkit-border-radius ??? ????, Firefox? ?? ??? -moz-border-radius ??? ?????.

?? ???? ????? -moz-border-radius? border-radius? ??? ???? ???.

-moz-?? ??: 15px;
?? ??: 15px;

(??: border-radius? ???? ???? ?? ??? ??? ???? ?? ? ????.)

?? ?? ????? border-radius? ????? ?? ?? ???? ??? ????. ? ???? ??, ??, ???(?? ???, ?? ??? ?) ? ??? ??? ?? ? ???? ??? ??? ?? ????? ??? ??? ????? ?????. ? ??? ????.

?? ????? ??? ??? ??? ??? ???? ?? ???? ?? ????. ?? ?? ??? ?? ??? ? ?? ???? ???? ??? ??? ??? ???? ??? ?? ???? ?? ????.



???? ??
||
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文網(wǎng)(php.cn)</title> <style type="text/css"> div { width: 200px; height: 100px; border: 2px solid #f36; border-color: red green blue orange; border-width: 15px 30px 30px 80px; border-radius: 50px; background: #ccc; } </style> </head> <body> <div> </div> </body> </html>