offset-path-shape-inset-001-ref.html (527B)
1 <!doctype html> 2 <meta charset="utf-8"> 3 <title>CSS Motion Path test reference: <basic-shape> inset() path with explicit arguments</title> 4 <link rel="author" title="Daniil Sakhapov" href="sakhapov@google.com"> 5 6 <style> 7 #outer { 8 top: 100px; 9 left: 100px; 10 position: relative; 11 width: 600px; 12 height: 400px; 13 } 14 #box { 15 background-color: green; 16 transform: translate(348px, 340px) rotate(180deg); 17 border-radius: 50% 50% 0 0; 18 width: 100px; 19 height: 100px; 20 } 21 </style> 22 23 <div id="outer"> 24 <div id="box"></div> 25 </div>