Web.QHMIT
.com
Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
Run
<!DOCTYPE html> <html> <head> <title>Example</title> <!-- CSS --> <style type="text/css"> .background { box-sizing: border-box; width: 100%; height: 150px; padding: 3px; background-image: url(/pix/samples/bg1.gif); border: 1px solid black; background-size: 100% 100%; } </style> </head> <body> <!-- HTML --> <div class="background"> Stretched background... </div> <p>And here is the image at it's original size:</p> <img src="/pix/samples/bg1.gif" style="border:1px solid black;"> </body> </html>
Preview