- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
CSS pause property
This property is a shorthand for setting pause-before and pause-after. If two values are given, the first value is pause-before and the second is pause-after.
Example
Let us see an example of pause property 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>
- Related Articles
- CSS pause-after property
- CSS pause-before property
- CSS padding property
- CSS outline property
- CSS height property
- CSS width property
- CSS order property
- CSS all Property
- CSS quotes Property
- CSS pitch property
- Orphans CSS Property
- CSS azimuth Property
- CSS stress property
- CSS background property
- CSS speak property

Advertisements