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