मैं लंबवत केंद्र की राह देख रहा हूं container
div को अंदर jumbotron
और पृष्ठ के मध्य में सेट करने के ।
.jumbotron
पूरी ऊंचाई और स्क्रीन की चौड़ाई के लिए अनुकूलित किया जाना है। .container
Div की चौड़ाई है 1025px
और पेज (खड़ी बीच में) के बीच में होना चाहिए।
मैं चाहता हूं कि यह पृष्ठ जंबोट्रॉन को स्क्रीन की ऊंचाई और चौड़ाई के साथ-साथ कंटेनर के लंबवत केंद्र के साथ जंबोट्रॉन के अनुकूल बनाए। मैं इसे कैसे प्राप्त कर सकता हूं?
.jumbotron {
height:100%;
width:100%;
}
.container {
width:1025px;
}
.jumbotron .container {
max-width: 100%;
}
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet"/>
<div class="jumbotron">
<div class="container text-center">
<h1>The easiest and powerful way</h1>
<div class="row">
<div class="col-md-7">
<div class="top-bg"></div>
</div>
<div class="col-md-5 iPhone-features" style="margin-left:-25px;">
<ul class="top-features">
<li>
<span><i class="fa fa-random simple_bg top-features-bg"></i></span>
<p><strong>Redirect</strong><br>Visitors where they converts more.</p>
</li>
<li>
<span><i class="fa fa-cogs simple_bg top-features-bg"></i></span>
<p><strong>Track</strong><br>Views, Clicks and Conversions.</p>
</li>
<li>
<span><i class="fa fa-check simple_bg top-features-bg"></i></span>
<p><strong>Check</strong><br>Constantly the status of your links.</p>
</li>
<li>
<span><i class="fa fa-users simple_bg top-features-bg"></i></span>
<p><strong>Collaborate</strong><br>With Customers, Partners and Co-Workers.</p>
</li>
<a href="pricing-and-signup.html" class="btn-primary btn h2 lightBlue get-Started-btn">GET STARTED</a>
<h6 class="get-Started-sub-btn">FREE VERSION AVAILABLE!</h6>
</ul>
</div>
</div>
</div>
</div>