| 
                         19.六边形 
- #hexagon {  
 - width: 100px;  
 - height: 55px;  
 - background: red;  
 - position: relative;  
 - }  
 - #hexagon:before {  
 - content: "";  
 - position: absolute;  
 - top: -25px;  
 - left: 0;  
 - width: 0;  
 - height: 0;  
 - border-left: 50px solid transparent;  
 - border-right: 50px solid transparent;  
 - border-bottom: 25px solid red;  
 - }  
 - #hexagon:after {  
 - content: "";  
 - position: absolute;  
 - bottom: -25px;  
 - left: 0;  
 - width: 0;  
 - height: 0;  
 - border-left: 50px solid transparent;  
 - border-right: 50px solid transparent;  
 - border-top: 25px solid red;  
 - }  
 
  
20.八边形 
- #octagon {  
 - width: 100px;  
 - height: 100px;  
 - background: red;  
 - position: relative;  
 - }  
 - #octagon:before {  
 - content: "";  
 - width: 100px;  
 - height: 0;  
 - position: absolute;  
 - top: 0;  
 - left: 0;  
 - border-bottom: 29px solid red;  
 - border-left: 29px solid #eee;  
 - border-right: 29px solid #eee;  
 - }  
 - #octagon:after {  
 - content: "";  
 - width: 100px;  
 - height: 0;  
 - position: absolute;  
 - bottom: 0;  
 - left: 0;  
 - border-top: 29px solid red;  
 - border-left: 29px solid #eee;  
 - border-right: 29px solid #eee;  
 - }  
 
  
                        (编辑:91站长网) 
【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! 
                     |