table
The table HTML element represents data with more than one dimension, in the form of a table.
HTML
<table attribute-name="attribute-value"></table>
Attributes
Name |
Value |
Description |
summary |
string |
Prose description of the structure of the table |
CSS
table {
border-collapse: separate;
border-color: gray;
border-spacing: 2px;
display: table;
}
summary
CSS
Internal
External