خصائص widows Style
- Tura zuwa baya wordWrap
- Tura zuwa karshe zIndex
- Tura zuwa kafin HTML DOM Style objekta
التعريف والاستخدام
widows
يحدد أو يعيد القيمة إلى عدد الأ最少 الصفوف التي يجب أن تكون مرئية في أعلى الصفحة (للطباعة أو عرض الطباعة المسبق).
widows
الميزة تؤثر فقط على العناصر الحجومية.
Tips:widows:5
موضحو فيما يلي أن يجب أن تكون هناك على الأقل 5 صفوف مرئية تحت علامة التبويب.
Tips:See orphans property To set or return the minimum number of lines that must be visible at the bottom of the page for an element.
Example
Change widows and check the print or print preview:
<html> <head> <script> function ChangeWidows() { document.getElementById("p1").style.widows = document.getElementById("widows").value; } </script> <style> .othercontent { width: 400px; border-top: 19cm solid #c3c3c3; } @page { /* Set the size of the print page */ size: 21cm 27cm; margin-top: 2cm; } @media print { .widows { widows:2; } } </style> </head> <body> <div class="othercontent"> <input id="widows" value="2"> <button onclick="ChangeWidows();">Change widows</button> <p style="font-size:120%" id="p1"> Change widows and view the print preview.<br> Line 2<br> Line 3<br> Line 4<br> Line 5<br> Line 6<br> Line 7<br> Line 8<br> </p> <div class="othercontent"> </body> </html>
Syntax
Return widows property:
object.style.widows
Set widows property:
object.style.widows = "number|initial|inherit"
Attribute value
Value | Description |
---|---|
number | An integer that specifies the minimum number of visible lines. Negative values are not allowed. The default value is 2. |
initial | Sets this property to its default value. See initial. |
inherit | Inherits this property from its parent element. See inherit. |
Technical details
Default value: | 2 |
---|---|
Return value: | A string that indicates the minimum number of lines to be printed at the top of the page. |
CSS version: | CSS2 |
browser supports
表中的数字注明了首个完全支持该属性的浏览器版本。
Chrome | Edge | Firefox | Safari | Opera |
---|---|---|---|---|
Chrome | Edge | Firefox | Safari | Opera |
25.0 | 8.0 | Yana kari | 7.0 | 10.0 |
- Tura zuwa baya wordWrap
- Tura zuwa karshe zIndex
- Tura zuwa kafin HTML DOM Style objekta