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-style: outset; column-rule-width: 20px; } </style> </head> <body> <h1>olumn-rule-width property example</h1> <p>The column-rule-width property sets the width 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>