So, as the name implies, I'm currently using Bootstrap. I am working on a flexible layout that on the desktop is a regular floating-point plugin. Then he adds the boot tabs to the size of the mobile device or tablet. I'm not quite sure how to solve this, since the bootstrap 3 col-xs float doesn't seem to play well with tab plugins. I made a chart to help explain.

Fiddle I worked with jsfiddle
<div class="container">
<div class="content">
<ul class="nav nav-tabs visible-phone">
<li class="active"><a href="#t1" data-toggle="tab">T1</a></li>
<li><a href="#t2" data-toggle="tab">T2</a></li>
<li><a href="#t3" data-toggle="tab">T3</a></li>
</ul>
<div class="row tab-content">
<div class="col-sm-4 tab-pane active" id="enter">
<div class="inner-right-border">
<h2>T1 CONTENT</h2>
<hr />
</div>
</div>
<div class="col-sm-8">
<div class="tab-pane" id="t2">
<h2>T2 CONTENT</h2><hr />
</div>
<div class="tab-pane" id="t3">
<h2>T3 CONTENT</h2><hr />
</div>
</div>
</div>
</div>
Thanks in advance for your help!
source
share