创建一个不占用bootstrap span类中整个宽度的div

时间:2012-11-23 08:25:27

标签: html css twitter-bootstrap

我试图设计一个带引导程序的网站,我需要在(行 - 流体,跨度类引导程序)中放置一个带有彩色背景的小div

这是我的代码

    <style>
    .lblue{
        -moz-border-radius: 3px;
        border-radius: 3px;
        box-shadow: 
          0 1px 2px #fff, /*bottom external highlight*/
          0 -1px 1px #666, /*top external shadow*/ 
          inset 0 -1px 1px rgba(0,0,0,0.5), /*bottom internal shadow*/ 
          inset 0 1px 1px rgba(255,255,255,0.8); /*top internal highlight*/
        font-size: 16pt;
        padding: 5px;
        margin:5px;
        color:white;
        background: #4bc2d3; /* Old browsers */
        background: -moz-linear-gradient(top,  #4bc2d3 0%, #70d6e2 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#4bc2d3), color-stop(100%,#70d6e2)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top,  #4bc2d3 0%,#70d6e2 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top,  #4bc2d3 0%,#70d6e2 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top,  #4bc2d3 0%,#70d6e2 100%); /* IE10+ */
        background: linear-gradient(to bottom,  #4bc2d3 0%,#70d6e2 100%); /* W3C */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4bc2d3', endColorstr='#70d6e2',GradientType=0 ); /* IE6-9 */
        font-family: OpenSans-Semibold;
        }
    </style>


    <div class="row-fluid">
    <div class="span12">
    <div class="lblue">Insert Content Here</div>
    <div class="lblue">Insert Content Here</div>
    <div class="lblue">Insert Content Here</div>
    <div class="lblue">Insert Content Here</div>
    </div>
    </div> 

这段代码的问题是div类lblue占用了bootstrap的span12类的整个宽度。我不能真正为该div指定一个特定的宽度,因为它需要是动态的,并根据其内容的长度拉伸自己。

摘要:

  1. 我需要使div类lblue只与其中的内容一样长
  2. 有解决方法吗?

1 个答案:

答案 0 :(得分:0)

是的,您可以轻松解决问题。将以下内容添加到.lblue:

display: table;

它应与大多数(如果不是全部)浏览器兼容。

修改1

有关该主题的更多信息可以在那里找到:

http://www.onenaught.com/posts/201/use-css-displaytable-for-layout