CSS中可以通过设置序列的虚线来实现不同样式的序列标记。下面我们来看看如何设置虚线的长度。
ul {
list-style-type: none;
margin: 0;
padding: 0;
}
li:before {
content: "";
border-top: 1px dashed #ccc;
display: inline-block;
width: 10px;
height: 10px;
margin-right: 10px;
vertical-align: middle;
} 上面的代码中,我们使用了:before伪元素来给li元素添加了一个虚线的样式。在border-top属性中,我们设置了1像素宽的虚线,并且用了#ccc作为颜色值。接下来介绍一下怎么修改虚线的长度。
在border-top属性中,我们可以加上一个dasharray属性,用来控制虚线的长度。这个属性的值是一个数字数组,表示一段实线和一段虚线的长度。
li:before {
content: "";
border-top: 1px dashed #ccc;
border-top-style: dashed;
border-top-width: 1px;
border-top-color: #ccc;
border-top-width: 2px;
border-top-dasharray: 5 10;
display: inline-block;
width: 10px;
height: 10px;
margin-right: 10px;
vertical-align: middle;
} 上面的代码中,我们使用了border-top-dasharray属性。值为5 10,表示实线长度为5像素,虚线长度为10像素。通过修改这个值,可以控制虚线的长度。
现在,你已经知道了如何控制CSS中序列的虚线长度了,赶紧去试试吧。