+ 2
How can I centralise my table using css
I can't centralise my table using text-align. Is there any another way to align a table at the center of the web page using css ?
2 Answers
+ 4
At least two ways:
> set css property of <table>: display:inline-table; and use text-align:center; on the parent
> set horizontal margin of <table> as 'auto'...
+ 2
đ