我目前在表格中有我的字母顺序列表,我想把它变成一个列表,而不是使用Bootstrap。我正在查看文档,无法找到我喜欢的任何内容。做这个的最好方式是什么 ?我在想这样的事情......
左侧有A,B,C等,右侧列出组项
我是否应该使用此列表或Bootstrap提供的其他内容?谢谢!
<ul class="list-group">
<li class="list-group-item">First item</li>
<li class="list-group-item">Second item</li>
<li class="list-group-item">Third item</li>
</ul>
答案 0 :(得分:8)
在HTML中,您可以将<ol>
与type
属性一起使用,如下所示:
<ol type="1|a|A|i|I">
表示编号类型:
来源:https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ol#attr-type
或者使用带有list-style-type
或lower-alpha
upper-alpha
属性的CSS,例如:
ol { list-style: upper-alpha; }
答案 1 :(得分:0)
我猜你可以使用list-style-type
css属性。
https://developer.mozilla.org/en-US/docs/Web/CSS/list-style-type