कॉलम की संख्या और चौड़ाई निर्धारित करने के लिए CSS3 में कॉलम प्रॉपर्टी का उपयोग करें। यह स्तंभ-चौड़ाई और स्तंभ-गणना गुणों के लिए एक आशुलिपि गुण है। इसे -
. के रूप में सेट किया गया हैcolumns: auto|column-width column-count|initial|inherit;
उदाहरण
आइए कॉलम गिनती सेट करने के लिए एक उदाहरण देखें -
<!DOCTYPE html> <html> <head> <style> .demo { -webkit-columns: auto auto; /* Chrome, Safari, Opera */ -moz-columns: auto auto; /* Firefox */ columns: auto auto; } </style> </head> <body> <h1>Machine Learning</h1> <div class="demo"> Today’s Artificial Intelligence (AI) has far surpassed the hype of blockchain and quantum computing. This is due to the fact that huge computing resources are easily available to the common man. The developers now take advantage of this in creating new Machine Learning models and to re-train the existing models for better performance and results. The easy availability of High Performance Computing (HPC) has resulted in a sudden increased demand for IT professionals having Machine Learning skills. </div> </body> </html>
आउटपुट
उदाहरण
आइए अब एक और उदाहरण देखें -
<!DOCTYPE html> <html> <head> <style> .demo { -webkit-columns: 40px 3; /* Chrome, Safari, Opera */ -moz-columns: 40px 3; /* Firefox */ columns: 40px 3; } </style> </head> <body> <h1>Machine Learning</h1> <div class="demo"> Today’s Artificial Intelligence (AI) has far surpassed the hype of blockchain and quantum computing. This is due to the fact that huge computing resources are easily available to the common man. The developers now take advantage of this in creating new Machine Learning models and to re-train the existing models for better performance and results. The easy availability of High Performance Computing (HPC) has resulted in a sudden increased demand for IT professionals having Machine Learning skills. </div> </body> </html>
आउटपुट