inline-cache-base-uri-ref.html (439B)
1 <!doctype html> 2 <meta charset="utf-8"> 3 <title>CSS test reference</title> 4 <style> 5 :root { 6 background-image: url("/images/blue.png"); 7 } 8 .frame { 9 box-sizing: border-box; 10 width: 100px; 11 height: 100px; 12 background-color: purple; 13 padding: 8px; /* Matches default body margin */ 14 } 15 16 .frame > div { 17 width: 50px; 18 height: 50px; 19 background-color: lime; 20 } 21 </style> 22 <div class="frame"> 23 <div></div> 24 </div>