PNLdev
Tutorial
Front-end
HTML
reference
CSS
reference
JavaScript
reference
En
English
فارسی
En
English
فارسی
Tutorial
Front-end
HTML
reference
CSS
reference
JavaScript
reference
Run
<!DOCTYPE html> <html> <head> <style> .newspaper { column-count: 3; column-gap: 20px; column-rule: 5px double #88ccbb; } </style> </head> <body> <h1>column-rule property example</h1> <p>The column-rule property sets the width, style, and color of the rule between the columns of the element:</p> <div class="newspaper"> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. </div> </body> </html>