1059167-1-ref.html (522B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta http-equiv="content-type" content="text/html; charset=UTF-8"> 5 <title>bug 1059167</title> 6 <style type="text/css"> 7 body { 8 width: 200px; 9 height: 200px; 10 border: 1px solid black; 11 } 12 13 .item { 14 width: 100px; 15 margin-left: 80px; 16 padding: 1rem; 17 background: red; 18 box-sizing: border-box; 19 } 20 21 p { 22 background: blue; 23 } 24 </style> 25 </head> 26 <body> 27 <div class="item"><p>Content</p></div> 28 </body> 29 </html>