Movatterモバイル変換


[0]ホーム

URL:


  1. Веб-технологии для разработчиков
  2. CSS: каскадные таблицы стилей
  3. Руководство по CSS
  4. Selectors
  5. :right

This page was translated from English by the community.Learn more and join the MDN Web Docs community.

View in EnglishAlways switch to English

:right

Limited availability

This feature is not Baseline because it does not work in some of the most widely-used browsers.

The:right CSSpagepseudo-class matches any right page when printing a page. It allows you to describe the styling of right-side pages.

css
/* Selects the content on the right-hand pages while printing */@page :right {  margin: 2in 3in;}

Whether the page is left or right is decided by the major writing direction of the document. For example, if the first page has a major writing direction of left-to-right then it will be a:right page and if it has a major writing direction of right-to-left then it will be a:left page.

Примечание:Вы можете не менять все CSS-свойства, а поменять только margin, padding, border, и background для страницы. Все остальные CSS-свойства будут проигнорированы и изменения будут применены только для страницы, но не для её содержимого.

Синтаксис

Error: could not find syntax for this item

Примеры

css
@page :right {  margin: 2in 3in;}

Спецификации

Specification
CSS Paged Media Module Level 3
# spread-pseudos

Совместимость с браузерами

Смотрите также

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp