คุณสมบัติ HTML DOM Style pageBreakInside ส่งคืนและแก้ไขพฤติกรรมการแบ่งหน้าสำหรับการพิมพ์หรือตัวอย่างก่อนพิมพ์ภายในองค์ประกอบ HTML ในเอกสาร HTML
ไวยากรณ์
ต่อไปนี้เป็นไวยากรณ์ -
1. กลับหน้าBreakInside
object.pageBreakInside
2. การแก้ไข pageBreakInside
object.pageBreakInside = “value”
ในที่นี้ ค่าสามารถเป็น −
ค่า | คำอธิบาย |
---|---|
เริ่มต้น | ตั้งค่าคุณสมบัตินี้เป็นค่าเริ่มต้น |
สืบทอด | รับค่าคุณสมบัตินี้จากองค์ประกอบหลัก |
อัตโนมัติ | แทรกตัวแบ่งหน้าภายในองค์ประกอบในเอกสาร HTML หากจำเป็น |
หลีกเลี่ยง | หลีกเลี่ยงการแบ่งหน้าภายในองค์ประกอบในเอกสาร HTML |
ให้เรามาดูตัวอย่าง HTML DOM Style pageBreakInside Property -
ตัวอย่าง
<!DOCTYPE html> <html> <style> body { color: #000; height: 100vh; background-color: #8BC6EC; background-image: linear-gradient(135deg, #8BC6EC 0%, #9599E2 100%); } .btn { background: #db133a; border: none; height: 2rem; border-radius: 2px; width: 40%; display: block; color: #fff; outline: none; cursor: pointer; margin: 1rem auto; } p { text-align: center; } </style> <body> <h1 style="text-align:center">DOM Style pageBreakInside Property Demo</h1> <p> Hi! I'm a para element with some dummy text. Hi! I'm a para element with some dummy text. </p> <p class="page-break"> Hi! I'm second para element with some dummy text. Hi! I'm a second element with some dummy text. </p> <button onclick="set()" class="btn">Set Break Page Here</button> <p> Hi! I'm another para element with some dummy text. Hi! I'm another para element with some dummy text. </p> <script> function set() { document.querySelector(".page-break").style.pageBreakInside = "avoid"; } </script> </body> </html>
ผลลัพธ์
ตอนนี้เปิดหน้าตัวอย่างก่อนพิมพ์และสังเกตว่าหน้า html ของเราจะแสดงอย่างไร จากนั้นคลิกที่ปุ่มสีแดงเพื่อหลีกเลี่ยงพฤติกรรมการแบ่งหน้าในเอกสาร -