offset-path-url-008-ref.html (528B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>CSS Motion Path Referecne: url() with border-box</title> 5 <style> 6 #outer { 7 width: 300px; 8 height: 100px; 9 padding: 50px; 10 border: 50px solid black; 11 } 12 #target { 13 width: 50px; 14 height: 50px; 15 background-color: green; 16 transform: translate(25px, -25px); 17 border-radius: 50% 50% 0 0; 18 } 19 </style> 20 </head> 21 <body> 22 <div id="outer"> 23 <div id="target"></div> 24 </div> 25 </body> 26 </html>