html中让表格居中的方法:首先新建html文件;然后在标签中输入代码“body {text-align: center;} table {margin: auto;}”即可让表格居中。</p></blockquote> <p><img src="https://img.php.cn/upload/article/202104/25/2021042510221752100.jpg" alt="html中怎么让表格居中" ></p> <p>本文操作环境:windows7系统、HTML5&&CSS3版、Dell G3电脑。</p> <p>设置表格居中方法实现:</p> <p>首先,打开html编辑器,新建html文件,例如:index.html。</p> <p><img src="https://img.php.cn/upload/image/939/354/554/1619317385416086.png" title="1619317385416086.png" alt="5e5a8b5a49a7a1b484e86fe69a6387c.png"></p> <p>在index.html中的<style>标签中,输入css代码:body {text-align: center;} table {margin: auto;}。</p> <p><img src="https://img.php.cn/upload/image/212/907/465/1619317381722003.png" title="1619317381722003.png" alt="74a6bd81409717bc5ced6ebeffe1771.png"></p> <p>浏览器运行index.html页面,此时成功用css让表格居中了。</p> <p><img src="https://img.php.cn/upload/image/704/751/930/1619317377927078.png" title="1619317377927078.png" alt="e1d336624a3a443026807d109e890d3.png"></p> <p>说明:</p> <p>css代码body {text-align: center;} table {margin: auto;}是两个元素选择器,分别为body和table两个元素设置css样式。</p> <p>在 W3C 标准中,元素选择器又称为类型选择器(type selector)。</p> <p>“类型选择器匹配文档语言元素类型的名称。类型选择器匹配文档树中该元素类型的每一个实例。”</p> <p>【推荐学习:<a href="https://www.php.cn/course/list/12.html" target="_blank">css视频教程</a>】</p>