首页 > 其他 > 详细

table表格整体居中

时间:2019-10-05 19:12:39      阅读:113      评论:0      收藏:0      [点我收藏+]

代码:

1 <div style="text-align: center;">
2     <table border="1" style="margin: auto;" width=‘60%‘>
3        ......
4     </table>
5 </div>

如果只是单单用第一行代码,表格整体不会居中,但是字体会居中,这是因为text-align属性代表市元素中文本的水平对齐方式,只针对文本内容所以我们还需要再加一行

1 <table border="1" style="margin: auto;" width=‘60%‘>
2        ......
3     </table>

 

table表格整体居中

原文:https://www.cnblogs.com/smartisn/p/11625388.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!