Center table
- # Delivery time : 10 days.
- # Height :18"
- # weidth :36"
- # Depth :20"
- # Colour : Lacquer spray
- # Material :Malaysian mdf wood & Mehegoni wood.
How to Center a Table in HTML
Tables are a great way to organize and display information in an easy-to-read format. But if you want your table to look its best, you may want to center it on the page. Centering a table in HTML is a simple task that can be accomplished with just a few lines of code.
Using HTML to Center a Table
Centering a table in HTML is done by using the <center> tag. This tag is used to center any type of content, including text, images, and tables. To center a table, simply wrap the <table> tag with the <center> tag like this:
<center>
<table>
... table content ...
</table>
</center>
This will center the table on the page. However, it is important to note that the <center> tag is deprecated in HTML5, so it is not recommended for use in modern webpages.
Using CSS to Center a Table
The preferred way to center a table in HTML is to use CSS. CSS stands for Cascading Style Sheets, and it is a language used to style webpages. To center a table using CSS, you can use the margin property. This property allows you to set the margins around an element. To center a table, you can set the left and right margins to auto like this:
<style>
table {
margin-left: auto;
margin-right: auto;
}
</style>
This will center the table on the page. You can also use the text-align property to center a table. This property allows you to set the alignment of text within an element. To center a table, you can set the text-align property to center like this:
<style>
table {
text-align: center;
}
</style>
Both of these methods will center the table on the page. However, it is important to note that the text-align property only works on block-level elements, so it may not work on some tables.
Conclusion
Centering a table in HTML is a simple task that can be accomplished with just a few lines of code. The preferred way to center a table is to use CSS, but the <center> tag can also be used. With these methods, you can easily center a table in HTML.