एक सुझाव जब आप एक ऑफसेट करना चाहते हैं, लेकिन अपने आप को अतिरिक्त छोटी चौड़ाई में असमर्थ पाते हैं:
का उपयोग करें .hidden-xs
और.visible-xs
अतिरिक्त छोटे चौड़ाई के लिए अपने html ब्लॉक का एक संस्करण है, और सब कुछ के लिए एक बनाने के लिए (आप अभी भी उपयोग कर सकते हैं जहां एक ऑफसेट)
उदाहरण:
<div class="hero container">
<div class="row">
<div class="hidden-xs col-sm-8 col-sm-offset-2 col-md-4 col-md-offset-4 text-center">
<h2>This is a banner at the top of my site. It shows in everything except XS</h2>
<p>Here are some supporting details about my banner.</p>
</div>
<div class="visible-xs col-xs-12">
<h2 class="pull-right">This is my banner at XS width.</h2>
<p class="pull-right">This is my supporting content at XS width.</p>
</div>
</div>
</div>
-xs
v4 में गिरा दिया जा रहा है, देखना यह ।