如何仅使用css和无图像将以下红框作为背景?
答案 0 :(得分:2)
您可以使用css伪类:after生成内容。其中.element是您添加到每个项目的类
.element {
position:relative
}
.element:after {
background-color:red;
content:'';
height:30px;
position:absolute;
right:0;
top:10px;
width:10px;
z-index:10
}
答案 1 :(得分:0)
<span style="background-color: Red"> </span>