th, td overflow: hidden; : th « Tags « HTML / CSS






th, td overflow: hidden;

   

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
    <head>
        <title> My favorite records  </title>
        <style>
* {
    font-family: monospace;
}
body {
    margin: 0;
}
table {
    width: 200px;
    border: thin solid black;
    table-layout: fixed;
}
th, td {
    overflow: hidden;
}
th, tfoot td {
    border: thin solid black;
    text-align: center;
    font-weight: bold;
}
tbody td {
    font-size: 120%;
}
caption {
    font-size: 90%;
    text-align: right;
}
td, th, caption {
    padding: 5px;
}
        
        </style>
    </head>
    <body>
        <div style='width: 200px;
                     height: 30px;
                     background: gray;
                     color: white;
                     text-align: center;'>
        &lt; -- 200 pixels -- &gt;
      </div>
        <table>
            <caption>
                Table: My favorite records.
            </caption>
            <colgroup>
                <col id='album' />
                <col id='artist' />
                <col id='released' />
            </colgroup>
            <thead>
                <tr>
                    <th> album            </th>
                    <th> artist           </th>
                    <th> released         </th>
                </tr>
            </thead>
            <tbody>
                <tr>
                    <td> This is a test.      </td>
                    <td> This is a test.      </td>
                    <td> 1965             </td>
                </tr>
                <tr>
                    <td> This is a test.  </td>
                    <td> This is a test.     </td>
                    <td> 1967             </td>
                </tr>
                <tr>
                    <td> Queen II         </td>
                    <td> Queen            </td>
                    <td> 1974             </td>
                </tr>
                <tr>
                    <td> Sone </td>
                    <td> Music                  </td>
                    <td> 1995                                   </td>
                </tr>
                <tr>
                    <td></td>
                    <td></td>
                    <td></td>
                </tr>
            </tbody>
            <tfoot>
                <tr>
                    <td> album            </td>
                    <td> artist           </td>
                    <td> released         </td>
                </tr>
            </tfoot>
        </table>
    </body>
</html>

   
    
    
  








Related examples in the same category

1.'th' Example
2.'axis' Example
3.'scope' specifies the group of cells to which header information on the current cell refers
4.table header tag
5.thead is the first section of a table. It formats the table header area.
6.Basic table with th tag
7.Style for table header
8.Nested table header
9.Table header style
10.Table header format
11.Table header column span
12.Table header and cell overflow hidden
13.Two level of table header
14.table header height: 50px;
15.Three row header
16.Grouped table header
17.Selecting cells in head
18.th height: 29px;
19.th width: 6em;
20.th colspan="2"