css中如何去掉表格左右边框

html-css025

css中如何去掉表格左右边框,第1张

你需要控制一下,

thead th:first-child{border-left:none}

thead th:last-child{border-right:none}

tbody td:first-child{border-left:none}

tbody td:last-child{border-right:none}

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

1、首先,打开html编辑器,新建html文件,例如:index.html,编写问题基础代码。

2、在index.html中的<style>标签中,输入css代码:td {padding: 0}。

3、浏览器运行index.html页面,此时成功用css去除了表格的边框和边距。