<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>background-origin of an Element</title> <style> .box { width: 260px; height: 160px; padding: 15px; border: 6px dashed orange; background: url("examples/resources/tajmahal.png"); background-size: contain; background-origin: content-box; } </style> </head> <body> <div class="box"></div> </body> </html>