Code Thuộc tính text-decoration-line trong CSS

Code Thuộc tính text-decoration-line trong CSS

Code Thuộc tính text-decoration-line trong CSS

Tự code rồi chạy thử... Chạy Thử
<!DOCTYPE html>
<html>
<head>
<title>Code Thuộc tính text-decoration-line trong CSS</title>
</head>
<body>

<h1>Code Thuộc tính text-decoration-line trong CSS</h1>

<p>Dùng để gạch ngang, gạch dưới, gạch trên cho văn bản và kết hợp với các thuộc tính khác như: text-decoration-style để tạo kiểu cho dấu gạch, text-decoration-color để tạo màu cho dấu gạch, text-decoration-thickness để tạo kích thước cho dấu gạch:</p>

<p style="text-decoration-line: overline;">text-decoration-line: overline; Gạch trên văn bản</p>

<p style="text-decoration-line: line-through;">text-decoration-line: line-through; Gạch ngang văn bản</p>

<p style="text-decoration-line: underline;">text-decoration-line: underline; Gạch dưới văn bản</p>

<!--Kết hợp các thuộc tính khác-->
<p style="text-decoration-line: underline; text-decoration-style: double; text-decoration-color: red; text-decoration-thickness: 5px;">text-decoration-line: underline; text-decoration-style: double; text-decoration-color: red; text-decoration-thickness: 5px;</p>

</body>
</html>
Code Thuộc tính text-decoration-line trong CSS nằm trong bài viết Thuộc tính text-decoration-line trong CSS