CSS pause property

WBOY
Release: 2023-08-26 13:29:21
forward
847 people have browsed it

CSS 暂停属性

This property is the abbreviation for setting pause-before and pause-after. If two values ​​are given, the first value is pause-before and the second value is pause-after.

Example

Let’s look at an example of the pause attribute in CSS −

<style>
   <!--
      /* pause-before: 20ms; pause-after: 20ms */
      h1 { pause : 20ms }

      /* pause-before: 30ms; pause-after: 40ms */
      h2{ pause : 30ms 40ms }

      /* pause-before: ?; pause-after: 10ms */
      h3 { pause-after : 10ms }
   -->
</style>
Copy after login

The above is the detailed content of CSS pause property. For more information, please follow other related articles on the PHP Chinese website!

source:tutorialspoint.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template