【发布时间】:2020-10-12 07:28:08
【问题描述】:
如何在引导程序中显示无序列表的项目符号。我有以下html
<body>
<div class="row">
<div class="col-md-12">
<ul class="list-group">
<li class="list-group-item border-0">
Do you need a research on your particuar ancestor or your goal is to make a family tree?
</li>
<li class="list-group-item border-0">Do you want to know how home of your ancestor looked like, if it's still there? We will provide photos!</li>
<li class="list-group-item border-0">Do you need to obtain a specific record (birth, marriage, death certificates, Census, tax, property ownership, etc)? </li>
<li class="list-group-item border-0">Do you want to find and visit your ancestral town and talk with locals to hear some family lores about your ancestors?</li>
<li class="list-group-item border-0">Do you need to find a grave, house or plot where your ancestors lived?</li>
<li class="list-group-item border-0">Do you need a guide through local archives or repositories while doing your research in Eastern Europe? </li>
<li class="list-group-item border-0">Do you want to find a living relative or missing heir for an estate?</li>
<li class="list-group-item border-0">Do you need a priceless gift for your parents, relatives or colleagues? </li>
</ul>
</div>
</div>
</body>
在我的 default1.css 中,我正在执行以下操作,但它没有显示项目符号。请帮忙。
.list-group-item border-0 {
list-style-type: disc !important;
padding-left: 1em;
}
【问题讨论】:
标签: html css twitter-bootstrap html-lists