+ 1
What should i use to align the table in center?
I tried doing it by using "align" command but when it is aligned to center the table border disappears.
6 Answers
+ 5
To align the table in center on the webpage you can easily do this by creating
<centre> <table>â˘â˘â˘â˘â˘</table> </center>
this but you must ensure that width of the table must be smaller than browser window.
keep learning.
+ 4
table {
margin:auto;
}
+ 1
try by using css class
ex.
table {
width:50%;
margin-left:auto;
margin-right:auto;
}
0
Thank you
0
<table align="center">
0
inside the table tag use the attribute align :
<table algin="center">