x
 
<html>
<head>
<title>CSS tutorial</title>
<style type="text/css">
p.p1 { 
    pause: 50ms; /* pause-before: 20ms; pause-after: 20ms */
} 
p.p2 { 
    pause-after: 1000ms; /* pause-before unspecified; pause-after: 10ms */
} 
</style>
</head>
<body>
<p class="p1">First paragraph here ...</p>
<p class="p2">Second paragraph here ...</p>
<p>Check the styles to see the pause properties applied on these paragraphs</p>
</body>
</html>