animation-pseudo-dynamic-001-ref.html (311B)
1 <!doctype html> 2 <title>CSS test reference</title> 3 <link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io"> 4 <style> 5 .test { 6 display: flex; 7 } 8 .test::before { 9 content: ""; 10 display: block; 11 width: 100px; 12 height: 100px; 13 background-color: green; 14 } 15 </style> 16 <div class="test"></div>