curved-stripe-border.html (291B)
1 <!doctype html> 2 <html><head> 3 <title>Curved stripe border (HTML)</title> 4 <style> 5 body { margin: 0 } 6 div { 7 box-sizing: border-box; 8 width: 180px; 9 height: 180px; 10 border: 30px double black; 11 border-radius: 60px / 40px; 12 margin: 20px; 13 } 14 </style> 15 </head><body> 16 <div></div> 17 </body></html>