center table in HTML

前端 未结 8 970
抹茶落季
抹茶落季 2020-12-03 08:53

How can I center the table within a div using html?

I have placed my content within a div tag and set the text-align

相关标签:
8条回答
  • 2020-12-03 09:33

    Edit the table tag like below

     <table border="1" align="center">
    

    and then check.

    0 讨论(0)
  • 2020-12-03 09:35
    <div style="text-align:center">    
       <table style="display: inline-table;">    
       </table>
    </div>
    
    0 讨论(0)
提交回复
热议问题