CSS में टेक्स्ट को फॉर्मेट करने के लिए, आप टेक्स्ट का रंग, टेक्स्ट डेकोरेशन, लाइन की ऊंचाई, टेक्स्ट की दिशा, टेक्स्ट अलाइनमेंट आदि को बदल सकते हैं।
आइए कुछ उदाहरण देखें -
पाठ संरेखण
CSS का उपयोग करके टेक्स्ट अलाइनमेंट सेट करने के लिए, टेक्स्ट-एलाइन प्रॉपर्टी का उपयोग करें। संपत्ति के संभावित मूल्य निम्नलिखित हैं -
text-align: left|right|center|justify|initial|inherit;
उदाहरण
आइए टेक्स्ट संरेखण सेट करने के लिए एक उदाहरण देखें -
<!DOCTYPE html> <html> <head> <style> .demo { -webkit-columns: auto auto; /* Chrome, Safari, Opera */ -moz-columns: auto auto; /* Firefox */ columns: auto auto; text-align: justify; } </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>
आउटपुट
लाइन की ऊंचाई
लाइन की ऊंचाई निर्धारित करने के लिए, लाइन-ऊंचाई संपत्ति का उपयोग करें। निम्नलिखित गुण मान हैं -
line-height: normal|number|length|initial|inherit;
उदाहरण
<!DOCTYPE html> <html> <head> <style> div { line-height: 1.9; } </style> </head> <body> <h1>Demo Heading</h1> <div> <p>This is demo text.<br> This is another demo text. </p> </div> </body> </html>
आउटपुट
पाठ सजावट
CSS में टेक्स्ट डेकोरेशन के लिए, टेक्स्ट-डेकोरेशन प्रॉपर्टी को शॉर्टहैंड प्रॉपर्टी के रूप में निम्नलिखित प्रॉपर्टीज के लिए इस्तेमाल करें -
text-decoration-line text-decoration-color text-decoration-style
उदाहरण
आइए CSS में टेक्स्ट डेकोरेशन के लिए एक उदाहरण देखें -
<!DOCTYPE html> <html> <head> <style> .demo { text-decoration: overline underline; } </style> </head> <body> <h1>Details</h1> <p class="demo">Examination Center near ABC College.</p> <p class="demo2">Exam begins at 9AM.</p> </body> </html>
आउटपुट