/
githubmirror
/
servo
Обзор
Документация
Войти
/
githubmirror
/
servo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tests/html/fixed_table_additional_cols.html
39 строк
1 KB
Jack Moffitt
Cargoify servo
09 сен 2014, 06:21
09 сен 2014, 06:21
c6ab60d
Код
Авторство
О чём код?
<!-- This test creates one table, one caption, three rows, three header cells, and five data cells. The table uses the fixed table layout algorithm and the table's width specified to 600px. Each column's width will be assigned as follows: - 1st & 2nd column: 200px (because it is defined in col element) - 3rd & 4th column: remaining width / 2 (becuase it is not defined so the remaining width is equally divided) And table, caption, td, th elements have border. --> <!DOCTYPE html> <html> <head> <title>Fixed Table</title> <style> table { table-layout: fixed; width: 600px; border: solid black 2px; } caption { border: solid blue 1px; } td { border: solid red 1px; } th { border: solid red 1px; } </style> </head> <body> <table> <caption>This is a 3x4 fixed table</caption> <colgroup> <col style="width: 200px" /> <col style="width: 200px" /> <col /> <col /> </colgroup> <tbody> <tr><th>Header 1</th><td>Cell 1</td><td>Cell 2</td></tr> <tr><th>Header 2</th><td>Cell 3</th><td>Cell 4</td></tr> <tr><th>Header 3</th><td>Cell 5</th></tr> </tbody> </table> </body> <html>