This post was originally published at thedevspace.io. Everything you need to master web development, all in one place.
A basic HTML table has the following structure:
John Doe
30
Software Engineer
USA
[email protected]
Jane Smith
28
Data Scientist
Canada
[email protected]
. . .
Each Sometimes, you might want to add a table header that gives information about the type of data that the row or column contains. Table header is defined with the To create a vertical header, place the Previously, we used the attribute By default, the table has a double border. This is because both the table element ( Aside from this small detail, the table border acts exactly like the border of any other HTML components we've discussed so far. For instance, you can customize the border width, color, and radius: By default, each table cell occupies one row and one column, but in this case, Name, Age, and Occupation spans over two rows, and Contact Information spans over two columns for this table to make sense. This effect can be achieved using the Just like any other block-level element, you can define the width and height of the table and table cells. As you can see, when there are extra spaces, the You can customize the alignment using We will discuss more about how to align elements later. If you found this guide helpful, follow us on social media for more tips, tutorials, and updates on web development: 🔹 TheDevSpace | LinkedIn Let's stay connected! 🚀 element defines a table row, and each element defines a table cell ( td
stands for table data). element.
Name
Age
Occupation
Country
Email
John Doe
30
Software Engineer
USA
[email protected]
. . .
element as the first child element inside each table row:
Name
John Doe
. . .
Age
30
. . .
. . .
Table border
border="1"
to add a border for the table. However, in practice, it is best to use CSS to control the appearance of the table like this:
table,
th,
td {
border: 1px solid;
}
) and each individual table cell (
) have their own borders. Using CSS, you may collapse them into one by setting a table-collapse
property.
table {
border-collapse: collapse;
}
Cells that span multiple rows and columns
colspan
and rowspan
attributes.
border="1">
rowspan="2">Name
rowspan="2">Age
rowspan="2">Occupation
colspan="2">Contact Information
Email
Phone
John Doe
30
Software Engineer
[email protected]
123-456-7890
Jane Smith
28
Data Scientist
[email protected]
987-654-3210
Styling your table
table,
th,
td {
border: 1px solid;
}
table {
border-collapse: collapse;
width: 100%;
}
th,
td {
height: 50px;
}
will be vertically centered and horizontally left-aligned. The will be centered both vertically and horizontally. text-align
and vertical-align
properties. text-align
changes the horizontal alignment, and vertical-align
changes the vertical alignment.
th,
td {
height: 50px;
text-align: center;
vertical-align: center;
}
Further readings
🔹 TheDevSpace | X
🔹 TheDevSpace | Threads