I have designed a basic website featuring a Bootstrap navbar with tabs. Each tab displays a table. You can view the layout here.
Everything functions correctly in Chrome 45 and IE 11 on Windows 8.1.
However, when using Firefox, the tables are positioned to the right of the navbar when the window width exceeds 767px.
<div id="content">
<ul class="nav nav-pills nav-tabs nav-justified navbar-header">
<li class="active"> <a href="#">Tab 1</a>
</li>
<li> <a href="#">Tab 2 </a>
</li>
</ul>
<div>
<h1>test</h1>
<table class="table table-bordered table-striped table-responsive" id="azubiTable">
<thead>
<tr id="head">
<th>1st col</th>
<th>2nd col</th>
<th>3rd col</th>
</tr>
</thead>
<tbody>
<tr>
<td>1.1</td>
<td>2.1</td>
<td>3.1</td>
</tr>
<tr>
<td>1.2</td>
<td>2.2</td>
<td>3.2</td>
</tr>
</tbody>
</table>
</div>