B.86. pause-after, pause-before

Pauses are used by aural (speaking) browsers for the visually impaired to provide clues to document structure. pause-before and pause-after let you set the amount of time to pause before and after an element, respectively.

Inherited: No

See also: Section B.85pause, Section B.104speech-rate

B.86.1. Value

Each of these properties takes a time value, each of which is a floating-point number followed by either s (seconds) or ms (milliseconds), or a percentage of the average word time (which is 1/rate, where rate is the value of the element's spech-rate property).

Initial value: Browser-specific

B.86.2. Compatibility

CSS Version: 2

Not supported by any currently-available browser.

B.86.3. Example

This example pauses for half the length of the average word before each h1 element, with the exception of h1 elements of class minor:

h1 {
  pause-before: 50%;
}
h1.minor {
  pause-before: none;
}

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
3.135.200.211