css怎么让表格居中

html-css014

css怎么让表格居中,第1张

需要准备的材料分别有:电脑、浏览器、html编辑器。

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

2、在index.html中的<style>标签中,输入css代码:body {text-align: center} table {margin: auto}。

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

<style type="text/css">.workorder { background-color:#cff9900border:1px solid #222222} body { text-align: center} div{ margin:0 auto} </style> <div><table width="400px" cellpadding="0" cellspacing="0" class="workorder" align="center"><tr><td width="50px">类型</td><td align="center" valign="middle"><input type="radio" name="jobtype" value="1">投诉 <input type="radio" name="jobtype" value="2">咨询 <input type="radio" name="jobtype" value="3">举报 <input type="radio" name="jobtype" value="4">求助 <input type="radio" name="jobtype" value="5">其他 </td></tr></table></div>

采纳哦