2 回答
TA贡献1827条经验 获得超4个赞
.cancel
{
width: 100px;
height: 100px;
background-color: #333333;
position: relative;
}
.cancel::before
{
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 50px;
height: 10px;
background-color: #ffffff;
transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.cancel::after
{
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 50px;
height: 10px;
background-color: #ffffff;
transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
<div class="cancel">
</div>
添加回答
举报