Thuộc tính DOM style textDecorationColor trả về và sửa đổi màu trang trí văn bản của một phần tử trong tài liệu HTML.
Cú pháp
Sau đây là cú pháp -
-
Trả về văn bảnDecorationColor
object.style.textDecorationColor
-
Sửa đổi textDecorationColor
object.style.textDecorationColor = “color”
Ví dụ
Hãy để chúng tôi xem một ví dụ về thuộc tính style textDecorationColor -
<!DOCTYPE html> <html> <head> <style> body { color: #000; background: lightblue; height: 100vh; } p { margin: 1.5rem auto; text-decoration: line-through; } .btn { background: #db133a; border: none; height: 2rem; border-radius: 2px; width: 40%; display: block; color: #fff; outline: none; cursor: pointer; } </style> </head> <body> <h1>DOM Style textDecorationColor Property Example</h1> <p>This is paragraph 1 with some dummy text. This is paragraph 1 with some dummy text.</p> <button onclick="add()" class="btn">Change textDecorationColor</button> <script> function add() { document.querySelector('p').style.textDecorationColor = "#db133a"; } </script> </body> </html>
Đầu ra
Điều này sẽ tạo ra kết quả sau -
Nhấp vào “ Thay đổi textDecorationColor ”Để thay đổi màu của dòng qua đoạn văn bản.