1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> </head> <style> html, body { margin: 0; } #destination { width: 100px; height: 100px; background-color: red; background-image: url("../2x2.png"); background-position: 50px 50px; background-repeat: no-repeat; background-size: 50px 50px; } </style> <body> <div id="destination"></div> </body> </html>