corner-4.html (297B)
1 <!doctype html> 2 <html> 3 <head> 4 <title>Test the border transparency</title> 5 <style> 6 7 div { 8 width: 100px; 9 height: 100px; 10 border: 15px solid rgba(0,0,255,0.5); 11 border-radius: 15px; 12 position: absolute; 13 left: 50px; 14 top: 50px; 15 } 16 17 </style> 18 </head> 19 <body> 20 <div></div> 21 </body> 22 </html>