टेक्स्ट डेकोरेशन का उपयोग करें पाठ को सजाने के लिए जावास्क्रिप्ट में संपत्ति। आप इस गुण का उपयोग करके किसी पाठ को रेखांकित कर सकते हैं।
उदाहरण
जावास्क्रिप्ट के साथ टेक्स्ट की सजावट सेट करने के लिए आप निम्न कोड को चलाने का प्रयास कर सकते हैं -
<!DOCTYPE html> <html> <body> <div id = "myText">This is demo text.</div><br> <button onclick = "display()">Set Text Decoration</button> <script> function display() { document.getElementById("myText").style.textDecoration = "underline"; } </script> </body> </html>