css屬性border-collapse與border-spacing的區別詳解

來源:互聯網
上載者:User
table

border-collapse:collapse; 表示邊框合并在一起。

border-collapse:separate;表示邊框之間的間距,間距的大小用border-spacing:px;定義大小。

CSS:

* { margin:0; padding:0;}table { border-collapse:separate; border-spacing:20px; width:600px; line-height:22px; font-size:12px;}tr,td { border:1px solid #999;}td { padding:1px 2px;}.one { font-weight:bolder; color:red;}.title { width:140px;}.title2 { width:350px;}.title3 { width:90px;}

HTMl:

<table>   <tbody>   <tr class="one">      <td class="title">禮品名稱</td>      <td class="title2">兌換規則</td>      <td class="title3">是否限量</td>   </tr>   <tr>      <td>QQ秀裝扮、QQ空間裝扮</td>      <td>活動期間每個QQ限量領取,QQ秀、QQ空間裝扮有效期間7天</td>      <td>限量</td>   </tr>   <tr>      <td>紅鑽一個月</td>      <td rowspan="2">每天限領1個,活動期間最多兌換20次</td>      <td>不限</td>   </tr>   <tr>      <td>捕魚假日、QQ炫舞、王朝霸域、戰龍三國、尋俠、蜀山傳、QQ部落等禮包</td>      <td>限量</td>   </tr>   <tr>      <td>紅鑽一個月</td>      <td rowspan="3">每天限領1個,活動期間最多兌換10次</td>      <td>不限</td>   </tr>   <tr>      <td>QQ秀手機殼</td>      <td>限量</td>   </tr>   <tr>      <td>蛇年QQ</td>      <td>限量</td>   </tr>   <tr>      <td>Ipad</td>      <td>活動期間限領取1次</td>      <td>限量</td>   </tr>   </tbody></table>


CSS:

* { margin:0; padding:0;}table { border-collapse:collapse; width:600px; line-height:22px; font-size:12px;}tr,td { border:1px solid #999;}td { padding:1px 2px;}.one { font-weight:bolder; color:red;}.title { width:140px;}.title2 { width:350px;}.title3 { width:90px;}

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.