I need to create a table on a web page that has two rows. The table needs to fill the entire page so I have set the height and width of the table to 100% in the CSS styleshe
OK working with CSS.
HTML:
This is item text. This is item text 2.
CSS:
table { border: 1px solid black; height: 100%; width: 100%; } tr.fixed { border: 1px solid black; height: 100px; } td { border: 1px solid black; }