Computer >> कंप्यूटर >  >> प्रोग्रामिंग >> CSS

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>

आउटपुट

CSS का उपयोग करके टेक्स्ट संरेखण सेट करें

उदाहरण

आइए अब एक और उदाहरण देखें -

<!DOCTYPE html>
<html>
<head>
<style>
body {
   background-image: linear-gradient(to right, yellow,orange,yellow,green,blue,indigo,violet);
}
.demo {
   text-decoration: overline;
   text-decoration-color: yellow;
   font-variant:normal;
   text-align: center;
}
</style>
</head>
<body>
<h1>Examination Details</h1>
<p class="demo">Exam on 20th December.</p>
<p class="demo2">Exam begins at 9AM.</p>
</body>
</html>

आउटपुट

CSS का उपयोग करके टेक्स्ट संरेखण सेट करें


  1. CSS का उपयोग करके टेक्स्ट डेकोरेशन

    CSS टेक्स्ट-डेकोरेशन प्रॉपर्टी का उपयोग चयनित एलिमेंट के टेक्स्ट में डेकोरेशन लागू करने के लिए किया जाता है। हम मान के रूप में लाइन-थ्रू, ओवरलाइन, अंडरलाइन आदि जोड़ सकते हैं। यह टेक्स्ट-डेकोरेशन-लाइन, टेक्स्ट-डेकोरेशन-कलर और टेक्स्ट-डेकोरेशन-स्टाइल के लिए शॉर्टहैंड है। सिंटैक्स टेक्स्ट-डेकोरेशन प्र

  1. CSS का उपयोग करके तत्व के टेक्स्ट का रंग सेट करना

    CSS कलर प्रॉपर्टी का इस्तेमाल किसी एलीमेंट के टेक्स्ट का रंग बदलने के लिए किया जाता है। हम मान को मानक रंग नाम, rgb(), rgba(), hsl(), hsla() और हेक्साडेसिमल मान के रूप में निर्दिष्ट कर सकते हैं। सिंटैक्स CSS कलर प्रॉपर्टी का सिंटैक्स इस प्रकार है - Selector {    color: /*value*/ } निम्नल

  1. टेक्स्ट-एलाइन और टेक्स्ट-जस्टिफाई सीएसएस प्रॉपर्टीज का उपयोग करके टेक्स्ट को जस्टिफाई कैसे करें?

    सीएसएस पाठ्य-औचित्य संपत्ति हमें किसी तत्व के लिए औचित्य प्रकार निर्दिष्ट करने में मदद करती है। टेक्स्ट-एलाइन प्रॉपर्टी एक एलिमेंट में टेक्स्ट के हॉरिजॉन्टल अलाइनमेंट को सेट करती है। उदाहरण निम्नलिखित उदाहरण CSS टेक्स्ट-जस्टिफाई प्रॉपर्टी को दर्शाते हैं। <!DOCTYPE html> <html> <head&