为了账号安全,请及时绑定邮箱和手机立即绑定

bootstrap里的基础列表组是怎么把列表圆点去掉的。

观察了下源码。。没看到消除列表圆点的代码啊。。

.list-group {
  padding-left: 0;
  margin-bottom: 20px;
}
.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd;
}
.list-group-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}


正在回答

1 回答

display: block;

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>去掉ul中li前的点.html</title>
    <style type="text/css">
    ul li {
        display: block;
    }
    </style>
</head>
<body>
<ul>
    <li>无序列表</li>
    <li>无序列表</li>
    <li>无序列表</li>
    <li>无序列表</li>
    <li>无序列表</li>
</ul>
</body>
</html>


0 回复 有任何疑惑可以回复我~
#1

一个非相关专业的人 提问者

原来定义成块级元素点就去掉了。。感激不尽
2018-04-19 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

bootstrap里的基础列表组是怎么把列表圆点去掉的。

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信