我尝试仅使用 css 来获得此结果。我更喜欢用css而不是使用图像,因为我会有很多这个国王的div,但宽度角度不同。
你会在这里找到我尝试过的东西......但没有成功......
.bloc1:before{
content: "";
background-color: #123456;
width : 27px;
height : 27px;
margin-top : 10px;
transform: rotate(45deg);
}
.bloc1 {
background-color: #000000;
width : 107px;
text-align: center;
padding-top : 8px;
height : 19px;
color : #FFFFFF;
text-transform: uppercase;
font-size: 12px;
position: relative;
}
.bloc1:after{
content: "";
background-color: #123456;
width : 27px;
height : 27px;
margin-top : 10px;
transform: rotate(45deg) ;
}
对你来说,最好的方法是什么?
非常感谢:)