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

发布网友 发布时间:2022-04-25 13:55

我来回答

3个回答

热心网友 时间:2022-04-06 13:30

你需要控制一下,
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;}

热心网友 时间:2022-04-06 14:48

table 外边套个div 加over-flow hidden 宽度小于table的边框 给table加margin -数就可以了
.right-top .warn div{
width: 276px;
overflow: hidden;
margin:0 auto;
}
.right-top .warn table{
width:280px;
margin-left:-2px;
}

热心网友 时间:2022-04-06 16:23

你要再table元素里添加

table {
    border-right:none; 
    border-left:none;
}

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com