คุณสมบัติ textAlign สไตล์ DOM ส่งคืนและแก้ไขการจัดแนวข้อความในแนวนอนในองค์ประกอบระดับบล็อกในเอกสาร HTML
ไวยากรณ์
ต่อไปนี้เป็นไวยากรณ์ -
-
ส่งคืน textAlign
object.style.textAlign
-
2. แก้ไข textAlign
object.style.textAlign = “value”
ตัวอย่าง
ให้เราดูตัวอย่างคุณสมบัติ textAlign สไตล์ −
<!DOCTYPE html> <html> <head> <style> body { color: #000; background: lightblue; height: 100vh; } p { border: 2px solid #fff; 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 textAlign 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.</p> <button onclick="add()" class="btn">Set textAlign</button> <script> function add() { document.querySelector('p').style.textAlign = "center"; } </script> </body> </html>
ผลลัพธ์
สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -
คลิกที่ “ตั้งค่า textAlign ” เพื่อจัดแนวข้อความภายในองค์ประกอบย่อหน้า