clip-border-area-on-body-not-propagated-to-root-ref.html (367B)
1 <!DOCTYPE html> 2 <title>background-clip:border-area on the root</title> 3 <style> 4 html, body { 5 box-sizing: border-box; 6 height: 100%; 7 margin: 0; 8 } 9 html { 10 background-color: white; 11 } 12 body { 13 border: 20px solid green; 14 padding: 10px; 15 } 16 </style> 17 18 There should be a 20px green border around the edge of the viewport. This text should be black on a white background.