Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> HTML

HTML DOM สไตล์ textDecorationLine คุณสมบัติ


คุณสมบัติ HTML DOM textDecorationLine ส่งกลับและแก้ไขประเภทของบรรทัดที่ตกแต่งข้อความขององค์ประกอบในเอกสาร HTML

ไวยากรณ์

ต่อไปนี้เป็นไวยากรณ์ -

  • การส่งคืน textDecorationLine

object.style.textDecorationLine
  • กำลังแก้ไข textDecorationLine

object.style.textDecorationLine = “value”

คุณค่า

ในที่นี้ ค่าสามารถเป็น −

ค่า คำอธิบาย
สืบทอด รับค่าคุณสมบัตินี้จากองค์ประกอบหลัก
ค่าเริ่มต้น ตั้งค่าคุณสมบัตินี้เป็นค่าเริ่มต้น
ไม่มี เป็นเพียงข้อความธรรมดาที่หมายถึงข้อความที่ไม่มีบรรทัดใดๆ
ขีดเส้นใต้ กำหนดบรรทัดใต้ข้อความ
โอเวอร์ไลน์ กำหนดบรรทัดเหนือข้อความ
line-through กำหนดบรรทัดผ่านข้อความ

ตัวอย่าง

ให้เราดูตัวอย่างคุณสมบัติสไตล์ textDecorationLine -

<!DOCTYPE html>
<html>
<head>
<style>
   body {
      color: #000;
      background: lightblue;
      height: 100vh;
   }
   p {
      margin: 1.5rem auto;
      text-decoration-line: 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 textDecorationLine 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 textDecorationLine</button>
<script>
   function add() {
      document.querySelector('p').style.textDecorationLine = "underline";
   }
</script>
</body>
</html>

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

HTML DOM สไตล์ textDecorationLine คุณสมบัติ

คลิกที่ “เปลี่ยน textDecorationLine ” เพื่อเปลี่ยนประเภทของเส้นที่ใช้สำหรับตกแต่งข้อความในย่อหน้า

HTML DOM สไตล์ textDecorationLine คุณสมบัติ