1059167-1.html (544B)
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-right: 20px; 16 padding: 1rem; 17 background: red; 18 box-sizing: border-box; 19 float:right; 20 } 21 22 p { 23 background: blue; 24 } 25 </style> 26 </head> 27 <body> 28 <div class="item"><p>Content</p></div> 29 </body> 30 </html>