1. 程式人生 > >html-css___table屬性(設置細線邊框)

html-css___table屬性(設置細線邊框)

pan css_ tab 設置 屬性設置 borde pad solid nbsp

1 border-collapse 屬性設置表格的邊框是否被合並為一個單一的邊框
2 //設置table實線邊框
3 table,td{
4     /*邊框合並*/
5     border-collapse: collapse;
6     border: 1px solid #000;
7 }
8 //table行內樣式
9 <table cellspacing="0" cellpadding="1" border="1px">

html-css___table屬性(設置細線邊框)