我在我的應用程序中使用引導程序。我想div中心我嘗試使用div col-sm-offset
但不是div中心。Div不使用類「Col-sm-7 col-sm-offset-2」的中心
我使用類在格Col-sm-7 col-sm-offset-2
我的代碼這裏下面
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<style>
.clsborder{
border:1px solid black;
}
</style>
<body>
<div class="container">
<div class="row">
<div class="col-sm-7 col-sm-offset-2 clsborder"> <h3>Column 1</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit...</p>
<p>Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris...</p>
</div>
</div>
</div>
</body>
</html>
注:我想股利中心自舉使用offset
Js小提琴演示here
可能重複檢查此[中心引導柱,使用偏移(http://stackoverflow.com/questions/25480047/center-bootstrap-column-using-offset只爲小設備) –
我也試試這個..但我想col-sm-7然後不是中心div –
你不能在奇數列大小上使用偏移量對元素進行居中。檢查這個答案http://stackoverflow.com/questions/18153234/center-a-column-using-twitter-bootstrap-3。所以如果你不想編寫自定義的CSS,那麼使用'col-sm-8'或'col-sm-6'。 – jakob