我的問題是如何在中心爲中心的自舉列的內容垂直,當我設置width: 100%
和height: 100%
用於覆蓋div中有什麼解決方案出現的問題:中心內容引導柱
示例圖片我需要做的:
下面是我的代碼:
var coverSection = $(".cover-table");
$(coverSection).height($(window).height());
.cover-table{
display:table;
width:100%;
text-align:center;
background-image:url("http://mlmconsultantsblog.com/wp-content/uploads/2010/02/man-working-on-laptop-dreamstime_7728015.jpg");
background-size:cover;
background-attachment:fixed;
color:white;
.cover-cell{
display:table-cell;
vertical-align:middle;
.overlay{
width:100%;
height:100%;
background-color:rgba(22, 22, 22, 0.80);
}
}
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"/>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<section class="cover-table">
<div class="cover-cell">
<div class="overlay">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="cover-nested">
<h4>Hello World</h4>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
注:請整版
通過這個鏈接,也許它可以幫助你[網站鏈接](http://tutorialzine.com/2015/09/quick-tip-the-simplest-way-到中心的元素,垂直和水平/)。 –
這很實用https://www.w3.org/Style/Examples/007/center.en.html –
謝謝你,你不能使用位置來居中垂直居中,這種方法無效 –