gpt4 book ai didi

css - 如何使用格式为 "number: 1, 2, 3, 4, 5"的样式表?

转载 作者:太空宇宙 更新时间:2023-11-03 20:01:29 26 4
gpt4 key购买 nike

<ul>
<li>number</li>
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
<li>5</li>
</ul>

和样式表:

ul {
list-style-type: none
}

ul li {
float: left;
}

li:after {
content: ", "
}

li:before {
content: ": "
}

li:last-child:after {
content: "."
}

li:first-child:before {
content: ""
}

结果是:

number, 1, 2, 3, 4, 5.

如何修正这个结果:

number: 1, 2, 3, 4, 5.

最佳答案

添加这个:

li:first-child:after {
content: ": "
}

关于css - 如何使用格式为 "number: 1, 2, 3, 4, 5"的样式表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14599671/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com