console
<table class="table table-bordered table-hover">
<thead>
<tr>
<th width="142" style="background:#e5e5e5">产品名称</th>
<th>银行1</th>
<th>银行2</th>
<th>包包</th>
<th>护肤品</th>
</tr>
</thead>
<tbody>
<tr>
<td width="250">贷款产品21</td>
<td>0-12万</td>
<td>1</td>
<td>23</td>
<td>43</td>
</tr>
<tr>
<td width="250">贷款产品22</td>
<td>45</td>
<td>34</td>
<td>45</td>
<td>45</td>
</tr>
</tbody>
</table>
table {
position: relative;
display: block;
background:red;
}
thead {
float: left;
}
tbody tr {
display: inline-block;
}
th, td {
height: 45px;
display: block;
}