Answers for "how to make a table row more narrow bootstrap"

2

bootstrap table row span

<td colspan="2">Content here</td> // or...
<td rowspan="2">Content here</td>
Posted by: Guest on July-03-2020
0

bootstrap table same width

<tr>
  <th style="width: 16.66%">Col 1</th>
  <th style="width: 25%">Col 2</th>
  <th style="width: 50%">Col 4</th>
  <th style="width:  8.33%">Col 5</th>
</tr>
Posted by: Guest on September-26-2021

Code answers related to "how to make a table row more narrow bootstrap"

Browse Popular Code Answers by Language