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

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


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

ไวยากรณ์

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

  • ส่งคืน textIndent

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

object.style.textIndent = “value”

คุณค่า

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

ค่า คำอธิบาย
สืบทอด รับค่าคุณสมบัตินี้จากองค์ประกอบหลัก
ค่าเริ่มต้น ตั้งค่าคุณสมบัตินี้เป็นค่าเริ่มต้น
percentage(%) ตั้งค่าเป็นเปอร์เซ็นต์ความกว้างขององค์ประกอบหลัก
ความยาว ตั้งค่าเป็นหน่วยความยาว

ตัวอย่าง

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

<!DOCTYPE html>
<html>
<head>
<style>
   body {
      color: #000;
      background: lightblue;
      height: 100vh;
   }
   p {
      margin: 1.5rem auto;
   }
   .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 textIndent Property Example</h1>
<p>
   This is paragraph 1 with some dummy text. This is paragraph 1 with some dummy text.
   This is paragraph 1 with some dummy text. This is paragraph 1 with some dummy text.
   This is paragraph 1 with some dummy text. This is paragraph 1 with some dummy text.
</p>
<button onclick="add()" class="btn">Set textIndent</button>
<script>
   function add() {
      document.querySelector('p').style.textIndent = "80px";
   }
</script>
</body>
</html>

ผลลัพธ์

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

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

คลิกที่ “ตั้งค่าการเยื้องข้อความ ” เพื่อเปลี่ยนการเยื้องของบรรทัดแรกของข้อความย่อหน้า

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