HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> div{ border: 1px solid #267326; padding: 10px; margin-bottom: 25px; column-count: 2; -webkit-column-count: 2; /* Chrome, Safari, Opera */ -moz-column-count: 2; /* Firefox */ -webkit-column-gap: 40px; -moz-column-gap: 40px; column-gap: 40px; column-rule-width: 4px; -webkit-column-rule-width: 4px; /* Chrome, Safari, Opera */ -moz-column-rule-width: 4px; /* Firefox */ column-rule-style: double; -webkit-column-rule-style: double; /* Chrome, Safari, Opera */ -moz-column-rule-style: double; /* Firefox */ } #point{ column-rule-color: red; -webkit-column-rule-color: red; /* Chrome, Safari, Opera */ -moz-column-rule-color: red; /* Firefox */ } #point1{ column-rule-color: green; -webkit-column-rule-color: green; /* Chrome, Safari, Opera */ -moz-column-rule-color: green; /* Firefox */ } #point2{ column-rule-color: blue; -webkit-column-rule-color: blue; /* Chrome, Safari, Opera */ -moz-column-rule-color: blue; /* Firefox */ } </style> </head> <body> <h1>CSS column-rule-color Property</h1> <h2>column-rule-color: red;</h2> <div id="point"> Joanne Rowling was born on 31st July 1965 at Yate General Hospital near Bristol, and grew up in Gloucestershire in England and in Chepstow, Gwent, in south-east Wales. </div> <h2>column-rule-color: green;</h2> <div id="point1"> Joanne Rowling was born on 31st July 1965 at Yate General Hospital near Bristol, and grew up in Gloucestershire in England and in Chepstow, Gwent, in south-east Wales. </div> <h2>column-rule-color: blue;</h2> <div id="point2"> Joanne Rowling was born on 31st July 1965 at Yate General Hospital near Bristol, and grew up in Gloucestershire in England and in Chepstow, Gwent, in south-east Wales. </div> </body> </html>
OUTPUT
×

Save as Private