clip-path-animation-custom-property-ref.html (203B)
1 <!DOCTYPE html> 2 3 <style> 4 .blue { 5 background-color: blue; 6 width: 200px; 7 height: 200px; 8 clip-path: circle(30% at 50% 50%) 9 } 10 </style> 11 12 <body> 13 <div class="blue"></div> 14 </body> 15 16 </html>