twitter-bootstrap – 在左侧的bootstrap中拉dl标签

前端之家收集整理的这篇文章主要介绍了twitter-bootstrap – 在左侧的bootstrap中拉dl标签前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何覆盖bootstrap中的dl标记,使其没有任何宽度(默认情况下,宽度为160).我希望dt字段在左边.另外,如何在两行之间添加更多空白?

我试图覆盖宽度,但它不起作用. http://jsfiddle.net/MgcDU/6357/embedded/result/

示例没有我的更改http://jsfiddle.net/MgcDU/6356/embedded/result/

解决方法

试试这个:
.dl-horizontal dt{
    text-align: left;
    margin-bottom: 1em;
    width: auto;
    padding-right: 1em;
}

.dl-horizontal dd{
    margin-left: 0;
    margin-bottom: 1em;
}

Demo fiddle

原文链接:https://www.f2er.com/bootstrap/233842.html

猜你在找的Bootstrap相关文章