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

सीएसएस के साथ काम करने वाले टेक्स्ट का रंग सेट करना

<घंटा/>

CSS कलर प्रॉपर्टी का इस्तेमाल किसी एलीमेंट के टेक्स्ट कलर को सेट करने के लिए किया जाता है।

सिंटैक्स

CSS कलर प्रॉपर्टी का सिंटैक्स इस प्रकार है -

Selector {
   color: /*value*/
}

उदाहरण

निम्नलिखित उदाहरण सीएसएस रंग संपत्ति को दर्शाते हैं -

<!DOCTYPE html>
<html lang="en">
<head>
<style>
div {
   height: 100px;
   width: 200px;
   margin: 10px;
   display: flex;
   float: left;
   font-size: 1.4em;
   word-spacing: 30px;
   line-height: 4.5em;
   border: thin solid blue;
   border-radius: 40%;
   text-align: center;
   color: rebeccapurple;
}
div + div{
   background-color: beige;
   color: red;
   text-align: justify;
   text-decoration: line-through;
}
</style>
</head>
<body>
<div>One Two</div>
<div>Three </div>
</body>
</html>

आउटपुट

यह निम्न आउटपुट देता है -

सीएसएस के साथ काम करने वाले टेक्स्ट का रंग सेट करना

उदाहरण

<!DOCTYPE html>
<html lang="en">
<head>
<style>
p {
   margin: 10px;
   display: flex;
   float: left;
   border: 3px groove green;
   text-align: center;
   color: rebeccapurple;
}
span{
   background-color: beige;
   color: red;
   text-decoration: underline;
}
</style>
</head>
<body>
<h2>What is Tableau?</h2>
<p>Tableau is a Business Intelligence tool for visually analyzing the data. 
<span>Users can create and distribute an interactive and shareable dashboard, 
which depict the trends, variations, and density of the data in the form of 
graphs and charts. </span> 
Tableau can connect to files, relational and Big Data sources to acquire and process data.</p>
</body>
</html>

आउटपुट

यह निम्न आउटपुट देता है -

सीएसएस के साथ काम करने वाले टेक्स्ट का रंग सेट करना


  1. सीएसएस के साथ काम करने वाला टेक्स्ट ट्रांसफॉर्मेशन

    CSS टेक्स्ट-ट्रांसफ़ॉर्म प्रॉपर्टी हमें किसी तत्व के लिए टेक्स्ट कैपिटलाइज़ेशन सेट करने की अनुमति देती है। यह निम्नलिखित मानों को स्वीकार कर सकता है:कैपिटलाइज़, लोअरकेस, अपरकेस, पूर्ण-चौड़ाई, पूर्ण-आकार-काना और कोई नहीं। सिंटैक्स CSS टेक्स्ट-ट्रांसफॉर्म प्रॉपर्टी का सिंटैक्स इस प्रकार है - Selector

  1. CSS में कलर प्रॉपर्टी सेट करना

    हम CSS का उपयोग करके टेक्स्ट, बॉर्डर और तत्वों की पृष्ठभूमि के लिए रंगों को परिभाषित कर सकते हैं। किसी तत्व के टेक्स्ट रंग को निर्दिष्ट करने के लिए रंग गुण का उपयोग किया जाता है। सिंटैक्स CSS कलर प्रॉपर्टी का सिंटैक्स इस प्रकार है - चयनकर्ता {रंग:/*मान*/} निम्नलिखित उदाहरण CSS रंग संपत्ति को दर्शा

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

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