CSS實(shí)現(xiàn)去除表格邊框非常簡單,只需要將表格的border屬性設(shè)置為0即可。
table { border: 0; }
如果想讓表格內(nèi)的元素也沒有邊框可以將單元格的border屬性也設(shè)為0。
td { border: 0; }
如果只想去掉表格的水平邊框,可以將表格的border-bottom和單元格的border-bottom屬性設(shè)置為0。
table { border-bottom: 0; } td { border-bottom: 0; }
同樣地,如果只想去掉表格的垂直邊框,可以將表格的border-right和單元格的border-right屬性設(shè)置為0。
table { border-right: 0; } td { border-right: 0; }