5

我正在学习引导程序。我正在使用 Bootstrap 进行固定宽度的设计。从在线文档中,我知道从列开始定位元素很容易。例如:

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>Bootstrap version</title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta name="description" content="">
    <meta name="author" content="">

    <!-- Le styles -->
    <link href="css/bootstrap.css" rel="stylesheet">
    <style type="text/css">
        body {
            padding-top: 60px;
            padding-bottom: 40px;
        }
    </style>
    <link href="css/bootstrap-responsive.css" rel="stylesheet">

    <link href="learn.css" rel="stylesheet">

    <!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
    <!--[if lt IE 9]>
        <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->

</head>

<body>


<div class="container">
    <div class="row">
    <div class="span3" style="background-color:grey">span3</div>
    <div class="span5" style="background-color:pink"><div id="text">span5 text</div></div>
    <div class="span4" style="background-color:navy">span4</div>
    </div>
</div> 


    <!-- Le javascript
    ================================================== -->
    <!-- Placed at the end of the document so the pages load faster -->
    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
    <script>window.jQuery || document.write('<script src="js/jquery-1.9.1.min.js"><\/script>')</script>    
    <script src="js/bootstrap.min.js"></script> 
</body>
</html>

在上面,

<div id="text">span5 text</div>

水平从第四列开始的地方开始。我想知道 Bootstrap 专家用户如何使用 CSS 来定位

<div id="text">span5 text</div>

使其在第三和第四列之间开始或在第八和第九列之间结束。

我正在考虑使用:

<style>
#text {
margin-left:-10px;
}
</style>

或者

<style>
#text {
    position:relative;
    left:-10px;
}
</style>

定位div,但不确定哪个是首选,想知道专家做什么以及其他一些方法。

谢谢!

4

2 回答 2

4

默认情况下,Bootstrap 跨度之间总是有一个 margin-left(或 gutter)(见这里:http ://bootply.com/64463 )。如果您想覆盖它,可以使用 CSS,但是您将失去 Bootstrap 的响应式优势,因为该元素将从正常的页面流中删除。

更好的选择可能是没有装订线的自定义 Bootstrap 构建:http: //twitter.github.io/bootstrap/customize.html#variables

或者,您可以创建一个自定义 CSS 类,根据需要应用到行,例如这个无 Gutter 示例:http ://bootply.com/61712

于 2013-06-16T20:46:17.760 回答
1

我使用这个解决方案,对我有用:

<div class="jumbotron" style="height:100%;">
  <div>
    <table style="height:100%;width:100%">
        <thead>
            <tr>
                <td>
                    <div class="row">
                        <div class="col-md-6">
                            head 1
                        </div>
                        <div class="col-md-6">
                            head 2
                        </div>
                    </div>
                </td>
            </tr>
        </thead>

        <tbody>
            <tr>
                <td>
                    <div class="row">
                        <div class="col-md-6">
                            body 1
                        </div>
                        <div class="col-md-6">
                            body 2
                        </div>
                    </div>
                </td>
            </tr>
        </tbody>

        <tfoot>
            <tr>
                <td>
                    <div class="row">
                        <div class="col-md-6">
                            foot 1
                        </div>
                        <div class="col-md-6">
                            foot 2
                        </div>
                    </div>
                </td>
            </tr>
        </tfoot>
    </table>
</div>

在此处输入图像描述

于 2015-09-23T09:24:21.613 回答