css怎么让一个表格居中

来自:互联网
时间:2021-03-11
阅读:

CSS让一个表格居中的方法:

1、首先,打开html编辑器,新建html文件,例如:index.html。

css怎么让一个表格居中

2、在index.html中的<style>标签中,输入css代码:

body {text-align: center;} table {margin: auto;}

css怎么让一个表格居中

3、浏览器运行index.html页面,此时成功用css让表格居中了。

css怎么让一个表格居中

返回顶部
顶部