fieldset-border-radius-with-alpha.html (563B)
1 <!DOCTYPE html> 2 <title>Fieldset with a border-radius and non-opaque border-color</title> 3 <link rel="match" href="fieldset-border-radius-with-alpha-ref.html"> 4 <style> 5 fieldset { 6 background-color: green; 7 border: 3px solid rgba(255, 0, 0, 0.9); 8 border-radius: 4px; 9 height: 100px; 10 width: 100px; 11 } 12 legend { 13 height: 50px; 14 width: 50px; 15 } 16 div { 17 background-color: green; 18 height: 110px; 19 position: absolute; 20 width: 150px; 21 top: 70px; 22 } 23 </style> 24 <p>There should be no red.</p> 25 <fieldset><legend></legend></fieldset> 26 <div></div>