The column-rule-color
properti CSS menentukan warna garis antara kolom dalam tata letak CSS multi-kolom.
Properti tidak bisa bertindak sendiri! Untuk melihat warnanya, kita perlu membuat garis - secara teknis disebut “aturan” - antar kolom. Itu membutuhkan column-rule-style
properti.
.columns ( column-count: 2 600px; column-rule-style: solid; column-rule-color: #f8a100; )
Atau, kita bisa menggunakan column-rule
properti steno, yang menggabungkan column-rule-color
, column-rule-style
dan column-rule-width
dalam satu deklarasi.
column-rule: 3px solid #f8a100;
Sintaksis
column-rule-color
mengambil satu nilai warna. Itu bisa berupa warna CSS yang valid, termasuk hex, RGB, RGBa, HSL, HSLa, dan warna bernama. Ia bahkan menerima currentColor
sebagai nilai.
column-rule-color: #f8a100; column-rule-color: hsl(39,100,49); column-rule-color: rgb(250,162,0); column-rule-color: aliceblue; column-rule-color: currentColor;
Demo
Dukungan browser
YAITU | Tepi | Firefox | Chrome | Safari | Opera |
---|---|---|---|---|---|
10+ | 12+ | 3.5+ | 4+ | 3.1+ | 11.5+ |
Android Chrome | Android Firefox | Browser Android | iOS Safari | Opera Mini |
---|---|---|---|---|
85+ | 79+ | Tidak | 3.2+ | Semua |
Spesifikasi
Modul Tata Letak Multikolom CSS Level 1 (Draf Editor)