В таблице HTML ниже есть значки в первой ячейке.Я пытаюсь выровнять их по горизонтали.Я использую float:left
, но все равно они отображаются вертикально
.mt-multiaccount-table {
background-color: transparent;
border: 1px solid #ddd;
}
.mt-multiaccount-table>thead>tr>th,
.mt-multiaccount-table>tbody>tr>td {
padding: 5px;
border: 1px solid #ddd;
}
.mt-multiaccount-table>tbody>tr>td>input {
border: none;
text-align: right;
}
<link href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" rel="stylesheet" />
<table class="mt-multiaccount-table">
<thead>
<tr>
<th></th>
<th>Col 1</th>
<th>Col 1</th>
<th>Col 1</th>
<th>Col 1</th>
<th>Col 1</th>
<th>Col 1</th>
<th>Col 1</th>
<th>Col 1</th>
<th>Col 1</th>
<th>Col 1</th>
<th>Col 1</th>
<th>Col 1</th>
</tr>
</thead>
<tbody style="background-color:white">
<tr>
<td>
<div style="display:inline;float:left"><i class="fa fa-bomb"></i></div>
<div style="display:inline;float:left"><i class="fas fa-address-book"></i></div>
<div style="display:inline;float:left"><i class="fab fa-accessible-icon"></i></div>
</td>
<td><input readonly="" type="number" value=""></td>
<td><input readonly="" type="text" value="RE"></td>
<td><input readonly="" type="text" value="Ahjhj"></td>
<td><input readonly="" type="text" value="554"></td>
<td><input readonly="" type="text" value="554"></td>
<td><input readonly="" type="text" value="554"></td>
<td><input readonly="" type="text" value="554"></td>
<td><input readonly="" type="text" value="554"></td>
<td><input readonly="" type="text" value="554"></td>
<td><input readonly="" type="text" value="554"></td>
<td><input readonly="" type="text" value="554"></td>
<td><input readonly="" type="text" value="554"></td>
</tr>
</tbody>
</table>