text-decoration-color प्रॉपर्टी
text-decoration-color प्रॉपर्टी
टेक्स्ट की लाइन का रंग सेट करती है।
यह प्रॉपर्टी text-decoration-line
और text-decoration-style
प्रॉपर्टीज़ के साथ संयुक्त रूप से उपयोग की जानी चाहिए।
ये प्रॉपर्टीज़ text-decoration
प्रॉपर्टी के प्रभाव को विस्तारित करती हैं,
जो अधिक उन्नत एनालॉग्स हैं।
प्रॉपर्टी का मान रंग के लिए कोई भी यूनिट हो सकता है।
सिंटैक्स
सिलेक्टर {
text-decoration-color: किसी भी CSS फॉर्मेट में रंग;
}
डिफॉल्ट मान: टेक्स्ट के समान रंग।
उदाहरण
अब टेक्स्ट के नीचे लाल रंग की अंडरलाइन होगी,
क्योंकि text-decoration-color प्रॉपर्टी
red मान में सेट की गई है:
<div id="elem">
Lorem ipsum dolor sit amet.
</div>
#elem {
text-decoration-style: solid;
text-decoration-color: red;
text-decoration-line: underline;
}
: