CSS如何修改tr邊框屬性

來源:互聯網
上載者:User

          tr是html標籤中行的標記,在web開發中,有時候我們為了美觀需要修改行的屬性。比如tr的邊框。如果我們按照如下的形式修改tr的屬性就大錯特錯了.      

1 tr{2 3    border:1px  solid #DDDDDD;4 5 }

 

             這樣是沒有任何效果的。因為表格中的tr並非單一的邊框,這樣便需要屬性border-collapse,border-collapse 屬性設定表格的邊框是否被合并為一個單一的邊框,還是象在標準的 HTML 中那樣分開顯示。

         執行個體:為表格設定合并邊框模型:

1    table{2 3       border-collapse:collapse;4    }

 

         參數:

        separate 預設值。邊框會被分開。不會忽略border-spacing 和 empty-cells 屬性。

         collapse   如果可能,邊框會合并為一個單一的邊框。會忽略 border-spacing 和 empty-cells 屬性。

         inherit      規定應該從父元素繼承border-collapse 屬性的值。

相關文章

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.