clip-path-animation-none-ref.html (407B)
1 <!DOCTYPE html> 2 <link rel="help" href="https://drafts.csswg.org/css-shapes-1/#basic-shape-interpolation"> 3 <style> 4 .target { 5 background-color: blue; 6 width: 100px; 7 height: 100px; 8 } 9 10 .outofbounds { 11 position: absolute; 12 top: 200px; 13 left: 200px; 14 height: 10px; 15 width: 10px; 16 background-color: blue 17 } 18 </style> 19 <div class="target"> 20 <div class="outofbounds"></div> 21 </div>