loading

Table Size

Table Width and Height

The width and height properties specify a table’s width and height.

The following example sets the <th> elements’ height to 70px and the table’s width to 100%:

....... BOX MUKVU.....

Example

				
					table {
  width: 100%;
}

th {
  height: 70px;
}
				
			

To create a table that should only span half the page, use width: 50%:

....... BOX MUKVU.....

Example

				
					table {
  width: 50%;
}
				
			
Share this Doc

Table Size

Or copy link

Explore Topic