Column Width: percentage, auto and px : table size « Tags « HTML / CSS






Column Width: percentage, auto and px

   

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8" />
    <title></title>
<style type="text/css" media="Screen">
* .i {
  background-color: pink;
}
* .a {
  width: auto;
}

* .b {
  width: 75px;
}

* .c {
  width: 150px;
}

* .d {
  width: 10%;
}

* .e {
  width: 50%;
}
</style>
</head>
<body>
<table> 
    <tr> 
        <td class="a i">auto</td>
        <td class="a">auto</td> 
        <td class="a">auto</td> 
        <td class="a">auto</td> 
        <td class="a">auto</td>
    </tr> 
    <tr> 
        <td class="a">auto</td> 
        <td class="b i">75px</td> 
        <td class="b">75px</td> 
        <td class="b">75px</td> 
        <td class="b">75px</td>
    </tr> 
    <tr> 
        <td class="a">auto</td> 
        <td class="a">auto</td> 
        <td class="c i">150px</td> 
        <td class="c">150px</td> 
        <td class="c">150px</td>
    </tr> 
    <tr> 
        <td class="a">auto</td> 
        <td class="a">auto</td> 
        <td class="a">auto</td> 
        <td class="d i">10%</td> 
        <td class="d">10%</td>
    </tr> 
    <tr> 
        <td class="a">auto</td> 
        <td class="a">auto</td> 
        <td class="a">auto</td> 
        <td class="a">auto</td> 
        <td class="e i">50%</td>
    </tr> 
</table> 


</body>
</html>

   
    
  








Related examples in the same category

1.Table body font size
2.Sized Table
3.Sized or Stretched Table
4.Right-offset Sized Table
5.Right-aligned Sized Table
6.Centered Sized Table
7.Left-offset Sized Table
8.tbody td font-size: 120%;
9.'cellpadding' sets the empty width between a cell's border and its content
10.'cellspacing' sets the width of the empty space between cells in a table
11.Table width 200px
12.Set table width, margin and text align
13.A table with auto width only expands enough to accomodate its content
14.table width: 350px;
15.table border-width: 1px;
16.table width:250px;
17.table width: auto;
18.table width: 95%;
19.An HTML table with width and float attributes
20.table width: 50%; margin: 0 auto; text-align: left;
21.table with auto width
22.table width: 100%;border: thin solid black;border-spacing: 15px 0;
23.table border-style:solid; border-width:1px; border-color:#666666;
24.table width: 100%;
25.Table width: auto
26.table auto width and height
27.Shrinkwrapped Table column width
28.table width: 100%
29.Fixed Table with fixed width
30.Adding auto width to a Table
31.Left-offset Shrinkwrapped Table
32.Right-offset Shrinkwrapped Table
33.Indented Stretched Table
34.Stretched Table