Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have been working on a small. However, I have a table where the cells are all sized automatically by the size of the text in each cell. How would I go about making all the cells the same width? For example, have 10 cells across, with each cell always using up 10% of the table's width.

You can see an JSFiddle of a table where the cells are different widths depending on the text here: https://jsfiddle.net/0sLb8cyo/2/

<table>
  <tr>
    <td>car</td>
    <td>car</td>
    <td>car</td>
    <td>car</td>
    <td>car</td>
    <td>car</td>
    <td>car</td>
    <td>car</td>
    <td>car</td>
    <td>car</td>
    <td>car</td>
    <td>car</td>
    <td>car</td>
    <td>car</td>
    <td>car</td>
  </tr>
  <tr>
    <td>car</td>
    <td>car</td>
    <td>car</td>
    <td>boat</td>
    <td>boat</td>
    <td>boat</td>
    <td>boat</td>
    <td>boat</td>
    <td>boat</td>
    <td>car</td>
    <td>car</td>
    <td>car</td>
    <td>car</td>
    <td>car</td>
    <td>car</td>
  </tr>
</table>

Thanks in advance.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
4.0k views
Welcome To Ask or Share your Answers For Others

1 Answer

Insert this into the CSS and you will succeed

table {
  width: 100%;
  table-layout: fixed;
}
table td {
  width: 100%;
}

table {
  width: 100%;
  table-layout: fixed;
}
table td {
  width: 100%;
}
<table>
  <tr>
    <td>car</td>
    <td>car</td>
    <td>car</td>
    <td>car</td>
    <td>car</td>
    <td>car</td>
    <td>car</td>
    <td>car</td>
    <td>car</td>
    <td>car</td>
    <td>car</td>
    <td>car</td>
    <td>car</td>
    <td>car</td>
    <td>car</td>
  </tr>
  <tr>
    <td>car</td>
    <td>car</td>
    <td>car</td>
    <td>boat</td>
    <td>boat</td>
    <td>boat</td>
    <td>boat</td>
    <td>boat</td>
    <td>boat</td>
    <td>car</td>
    <td>car</td>
    <td>car</td>
    <td>car</td>
    <td>car</td>
    <td>car</td>
  </tr>
</table>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...