Definition

Indicates that the content can be laid out vertically (e.g, using the vertical-rl of [css-writing-modes-3]).

Examples

Example 1 — EPUB 3
<meta property="schema:accessibilityFeature">
   verticalWriting
</meta>
Example 2 — EPUB 2
<meta name="schema:accessibilityFeature"
      content="verticalWriting"/>
Example 3 — Audiobooks
"accessibilityFeature": ["verticalWriting"]

Explanation

The verticalWriting value indicates that the writing direction is vertical (top-to-bottom).

Some readers of languages that can be written vertically or horizontally have difficulty with one or the other writing direction. Setting this value allows the reader to determine if the text will be readable for them.

Only use the verticalWriting value with languages that can be written in both horizontal and vertical directions (e.g., Japanese). Do not set this value for languages that are only written vertically.

Use the horizontalWriting value when the writing direction is horizontal.

Related Links