LESS:list-group.less
SASS:_list-group.scss
列表组看上去就是去掉了列表符号的列表项,并且配上一些特定的样式,在bootstrap框架中的基础列表组主要包括两个部分:
list-group:列表组容器,常用的是ul元素,也可以是ol或div元素
list-group-item:列表项,常用的是li元素,也可以是div元素
对于基础列表组并没有做过多的样式设置,主要设置了其间距、边框和圆角等;
.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 ;
}
查看更多关于详解Bootstrap列表组组件-洛水三千的详细内容...
声明:本文来自网络,不代表【好得很程序员自学网】立场,转载请注明出处:http://www.haodehen.cn/did115764