利用 CSS 設定欄的速記屬性


使用 columns 屬性利用 CSS 設定欄。你可以嘗試執行以下程式碼來實現 columns 屬性

示例

即時演示

<!DOCTYPE html>
<html>
   <head>
      <style>
         .demo {
            column-rule-color: gray;
            columns: 100px 4;
            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.
      </div>
   </body>
</html>

更新於:2020-06-24

116 閱讀數

開啟你的職業生涯

透過完成本課程獲得認證

開始
廣告
© . All rights reserved.