-
Notifications
You must be signed in to change notification settings - Fork 636
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Создаёт статью про свойство orphans
#5460
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
--- | ||
title: "`orphans`" | ||
description: "Сколько строчек должно остаться на предыдущей странице при печати?" | ||
authors: | ||
- furtivite | ||
contributors: | ||
- skorobaeus | ||
related: | ||
- js/match-media | ||
- css/media | ||
- js/window-print | ||
tags: | ||
- doka | ||
--- | ||
|
||
## Кратко | ||
|
||
Свойство `orphans` указывает, минимальное количество строк абзаца, которые должны остаться на странице при печати. Если не хватает места. | ||
|
||
Работает только внутри директивы [`@media`](/css/media/) со значением `print`. Отправьте страницу на печать, чтобы посмотреть, что получится. | ||
|
||
## Пример | ||
|
||
```css | ||
@media print { | ||
p { | ||
orphans: 2; | ||
} | ||
} | ||
``` | ||
|
||
## Как пишется | ||
|
||
В качестве значения можно передать целое положительное число, которое обозначает минимальное количество строк абзаца, которое должно остаться на предыдущей странице при печати. Не работает при отрицательном значении. | ||
|
||
## Как понять | ||
|
||
Свойство `orphans` тесно связано со свойством [`widows`](/css/widows/) и обозначает строки, которые остаются на предыдущей странице для печати. | ||
|
||
![Пример напечатанного на двух страницах текста](images/orphans.png) | ||
Поэма А.С. Пушкина «Руслан и Людмила». Синим выделены оставшиеся одни «сироты». | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Сироты — это очень поэтично, но лучше заменить на «строки» =) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Поэтично-не поэтично, я перевёл слово) Там есть «вдовы» и «сироты». There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Не обязательно калькировать все слова, если они не добавляют понятности, а только вводят новые термины. |
||
|
||
Свойство `orphans` [наследуемое](/css/inheritance/) и вместо положительного числа можно передать значение `inherit`, при этом в свойство нельзя передавать отрицательные значения. Они работать не будут. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Кроме наследования остальная инфа уже была. А про наследование можно упомянуть в блоке «как пишется». |
||
|
||
## На что обратить внимание | ||
|
||
Обратите внимание, свойство `widows` имеет преимущество перед `orphans`. Браузер выполнит это свойство, а затем постарается выполнить то, что указано в `orphans`. | ||
|
||
По умолчанию в браузерах, кроме Mozilla Firefox `orphans: 2`. В Firefox свойство не поддерживается. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Не очень поняла этот абзац. Можешь, пожалуйста, подробнее рассказать, что имелось в виду? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Значение В Firefox это свойство не работает совсем. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Что-то вроде: «Дефолтное значение |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Посмотри, пожалуйста, я переформулирвоала немного. Не потерялся ли смысл?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
orphans
показывает минимальное обязательное количество строк:Кажется, это критичный момент.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Поправила