我想和邊境六邊形形狀,圓潤的邊角和CSS3透明的背景就像這個形象:使六邊形形狀的邊框,圓角和透明背景
我不能讓這與圓角和邊界。
我的代碼是在這裏:
#hexagon-circle {
position: relative;
margin: 1em auto;
width: 10em;
height: 17.32em;
border-radius: 1em/.5em;
background: red;
transition: opacity .5s;
cursor: pointer;
}
#hexagon-circle:before {
position: absolute;
width: inherit;
height: inherit;
border-radius: inherit;
background: inherit;
content: '';
-webkit-transform: rotate(60deg); /* Chrome, Opera 15+, Safari 3.1+ */
-ms-transform: rotate(60deg); /* IE 9 */
transform: rotate(60deg); /* Firefox 16+, IE 10+, Opera */
}
#hexagon-circle:after {
position: absolute;
width: inherit;
height: inherit;
border-radius: inherit;
background: inherit;
content: '';
-webkit-transform: rotate(-60deg); /* Chrome, Opera 15+, Safari 3.1+ */
-ms-transform: rotate(-60deg); /* IE 9 */
transform: rotate(-60deg); /* Firefox 16+, IE 10+, Opera */
}
<div id="hexagon-circle"></div>
你用Google搜索'使六邊形形狀邊界和css'圓角? –
注意Tnx ...我嘗試,但它是沒有幫助..如何設置邊界爲此:http://jsfiddle.net/yR7zt/4/ ......我的主要問題是設置邊界爲此....堅實的邊界集不是好主意,,! – miladhp
@ web-tiki --- ok – miladhp