CSS背景边框样式和位置

时间:2011-10-05 11:12:57

标签: html css

如何仅使用css和无图像将以下红框作为背景?

enter image description here

2 个答案:

答案 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)

&nbsp;<span style="background-color: Red">&nbsp;</span>&nbsp;