Вот как выглядит моя таблица:
![enter image description here](https://i.stack.imgur.com/9gHfV.png)
Я хочу уменьшить разрыв между двумя кнопками и переместить кнопки больше к текстовому содержимому. Однако я все еще хочу, чтобы таблица корректировалась, если я ввожу какой-то действительно длинный текст или смотрю на него на большом / маленьком экране.
jsFiddle link
Это мой текущий HTML:
<table cellspacing="0" rules="all" border="1" style="border-collapse:collapse;">
<thead>
<tr>
<th scope="col">Manufacturer</th>
<th scope="col"> </th>
<th scope="col"> </th>
</tr>
</thead>
<tbody>
<tr>
<td class="fullWidth">Arrow International</td>
<td class="fixedWidth"><input type="button" value="Report" class="button" /></td>
<td class="fixedWidth"><input type="button" value="Delete" class="button" /></td>
</tr>
<tr>
<td class="fullWidth">Cardinal Health</td>
<td class="fixedWidth"><input type="button" value="Report" class="button" /></td>
<td class="fixedWidth"><input type="button" value="Delete" class="button" /></td>
</tr>
<tr>
<td class="fullWidth">DeRoyal</td>
<td class="fixedWidth"><input type="button" value="Report" class="button" /></td>
<td class="fixedWidth"><input type="button" value="Delete" class="button" /></td>
</tr>
<tr>
<td class="fullWidth">Kimberly-Clark</td>
<td class="fixedWidth"><input type="button" value="Report" class="button" /></td>
<td class="fixedWidth"><input type="button" value="Delete" class="button" /></td>
</tr>
</tbody>
Это мой текущий CSS:
#main-content table {
width: 100%;
border-collapse: collapse;
}
#main-content table thead th {
font-weight: bold;
font-size: 15px;
border-bottom: 1px solid #ddd;
}
#main-content tbody {
border-bottom: 1px solid #ddd;
}
#main-content tbody tr {
background: #fff;
}
#main-content tbody tr.alt-row {
background: #f3f3f3;
}
#main-content table td,
#main-content table th {
padding: 10px;
line-height: 1.3em;
}
#main-content table tfoot td .bulk-actions {
padding: 15px 0 5px 0;
}
#main-content table tfoot td .bulk-actions select {
padding: 4px;
border: 1px solid #ccc;
}
#main-content td .fixedWidth {
white-space: nowrap;
width: 0%;
}
#main-content td .fullWidth {
width: 100%;
white-space: normal;
}
Я экспериментировал с пробелами: сейчас, но пока не нашел решения!
Я близко?