9

When an HTML table has it's table-layout set to auto its columns are auto-sized. Given this scenario is there a way to keep specific columns fixed width? I've tried using CSS width - doesn't seem to have any effect.

maxbellec
  • 16,093
  • 10
  • 36
  • 43
Yuriy Galanter
  • 38,833
  • 15
  • 69
  • 136

3 Answers3

5

use min-width instead of width:

<table style="table-layout: auto">
  <tr>
    <td style="min-width: 200px">some cell 200px width</td>
    <td>other cell, auto width</td>
    <td>other cell, auto width</td>
    <td>other cell, auto width</td>
    <td>other cell, auto width</td>
  </tr>
</table>
maxbellec
  • 16,093
  • 10
  • 36
  • 43
4

You can do this using CSS if you use nth-child

CSS:

.table {
    table-layout:auto
}
td, th {
    border: 1px solid #999;
    padding: 0.5rem;
}
.table1 th:nth-child(1), .table1 td:nth-child(1) {
    width: 200px; /*becomes 218px with padding*/
    background: hsl(150, 50%, 50%);
}

HTML:

<h3>table 1</h3>

<table class="table1">
    <thead>
        <tr>
            <th>Column 1</th>
            <th>Column 2</th>
            <th>Column 3</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>I'm 218px wide!</td>
            <td>00001</td>
            <td>Blue</td>
        </tr>
        <tr>
            <td>I'm 218px wide!</td>
            <td>00002</td>
            <td>Red</td>
        </tr>
        <tr>
            <td>I'm 218px wide!</td>
            <td>00003</td>
            <td>Green</td>
        </tr>
    </tbody>
</table>

<p>&#160;</p>

<h3>table 2</h3>

<table>
    <thead>
        <tr>
            <th>Column 1</th>
            <th>Column 2</th>
            <th>Column 3</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>I'm 118px wide!</td>
            <td>00001</td>
            <td>Blue</td>
        </tr>
        <tr>
            <td>I'm 118px wide!</td>
            <td>00002</td>
            <td>Red</td>
        </tr>
        <tr>
            <td>I'm 118px wide!</td>
            <td>00003</td>
            <td>Green</td>
        </tr>
    </tbody>
</table>

Here is a demo: http://jsfiddle.net/3dyhE/2/

cassidymack
  • 797
  • 4
  • 17
  • 41
0

In my case I had to specify widths for all the columns and have them grow relatively to the table which fills the available width, but I still wanted one column's width to stay fixed. The solution was to set width for the fixed-width column, and min-width & max-width for the auto-width columns:

table {
  table-layout: auto;
  text-align: left;
  border: 1px solid black;
  width: 100%;
}

td, th {
  border: 1px solid black;
}

.a {
  min-width: 100px;
  max-width: 100px;
}

.b {
  width: 50px;
}

.c {
  min-width: 40px;
  max-width: 40px;
}

.d {
  min-width: 80px;
  max-width: 80px;
}
<table>
  <tr>
    <th class="a">A</th>
    <th class="b">B</th>
    <th class="c">C</th>
    <th class="d">D</th>
  </tr>
  <tr>
    <td class="a">Very long text here</td>
    <td class="b">Very long text here</td>
    <td class="c">Very long text here</td>
    <td class="d">Very long text here</td>
  </tr>
</table>
Amit Beckenstein
  • 1,220
  • 12
  • 20