很简单的想法,但我不知道如何做到这一点。我希望能够将它作为一个样式div
(如果可能的话)。
如何创建八角形div
?
The CSS used in this link is this:
#octagon {
width: 100px;
height: 100px;
background: red;
position: relative;
}
#octagon:before {
content: "";
position: absolute;
top: 0;
left: 0;
border-bottom: 29px solid red;
border-left: 29px solid #eee;
border-right: 29px solid #eee;
width: 42px;
height: 0;
}
#octagon:after {
content: "";
position: absolute;
bottom: 0;
left: 0;
border-top: 29px solid red;
border-left: 29px solid #eee;
border-right: 29px solid #eee;
width: 42px;
height: 0;
}
It is constructed from the div element itself which is given a rectangular shape. Using the :before
and :after
pseudo classes, content is added to create two trapeziums that complete the octagon. Cleverly this keeps the actual tag count at just one by using the funkier bits of CSS.
The origins of this technique can be found here.
Here is a quick demo. The blue part is the :before
CSS and the green the :after
CSS. And even better, here is a demo that allows transparent backgrounds! (thank you @GGG).
只是制作一个正方形,将其旋转 45 度然后剪掉角落怎么样?
.octagon {
height: 10em;
position: relative;
overflow: hidden;
width: 10em;
}
.octagon:after {
background: red;
content: " ";
height: 100%;
position: absolute;
width: 100%;
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
}