使用 CSS 設定列間分割線的顏色


要設定列之間的顏色,請使用column-rule-color 屬性。你可以嘗試執行以下程式碼來實現 column-rule-color 屬性。

這樣,我們還可以設定列分割線的樣式

示例

即時演示

<!DOCTYPE html>
<html>
   <head>
      <style>
         .demo {
            column-count: 4;
            column-gap: 50px;
            column-rule-color: orange;
            column-rule-style: dashed;
         }
     </style>
   </head>
   <body>
      <div class = "demo">
         This is demo text. This is demo text. This is demo text. This is demo text.
         This is demo text. This is demo text. This is demo text. This is demo text.
         This is demo text. This is demo text. This is demo text. This is demo text.
         This is demo text. This is demo text. This is demo text. This is demo text.
         This is demo text. This is demo text. This is demo text. This is demo text.
         This is demo text. This is demo text. This is demo text. This is demo text.
         This is demo text. This is demo text. This is demo text. This is demo text.  
         This is demo text. This is demo text.
      </div>
   </body>
</html>

更新於:2020 年 6 月 24 日

92 次瀏覽

助你 開啟事業

透過完成課程獲得認證

開始
Advertisement
© . All rights reserved.