relpos-inline-1-ref.html (273B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <style> 5 span, div { position: relative; left: 200px } 6 html { 7 overflow: hidden; 8 } 9 </style> 10 </head> 11 <body> 12 <span>All text should be offset 200px.</span> 13 <div>Some more text</div> 14 </body> 15 </html>