[css][v4] 4.0.0-alpha.6 bootstrap.min.css seems to be a RTL version (at least in terms of grid system)
Created by: tim1234ltp
Using bootstrap's grid system, I created a nice table but the column seems to be in reversed order (that is RTL, from right to left). Yet, when I used a different css: https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.1.1/css/bootstrap.css. It works perfectly. I am not sure if any other css format is affected by the new v4 alpha as well. Here is the code:
<head>
<title>Bootstrap Example</title>
<meta charset="UTF8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" rel="stylesheet"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<table id="headerTable" class="table table-bordered ">
<thead class="thead-default">
<tr>
<th colspan="2">Header</th>
</tr>
</thead>
<tbody>
<tr>
<th class="col-sm-2">Account Number</th>
<td class="col-sm-10"><input id="${field}" type="text" class="input-sm"></td>
</tr>
<tr>
<th class="col-sm-2">Cycle Number</th>
<td class="col-sm-10"><input id="${field}" type="text" class="input-sm"></td>
</tr>
</tbody>
</table>
</div>
</body>