यह निर्धारित करने के लिए कि किसी तत्व को कितने कॉलम में फैलाना चाहिए, कॉलम-स्पैन प्रॉपर्टी का उपयोग करें। आप कॉलम-स्पैन प्रॉपर्टी को लागू करने के लिए निम्न कोड चलाने का प्रयास कर सकते हैं:
उदाहरण
<!DOCTYPE html> <html> <head> <style> .demo { column-count: 4; column-rule-color: maroon; column-rule-style: dashed; } h1 { column-span: all; } </style> </head> <body> <div class = "demo"> <h1>This is our heading.</h1> 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>