| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| </head> | |
| <style> | |
| html, body { | |
| margin: 0; | |
| } | |
| #destination { | |
| width: 100px; | |
| height: 100px; | |
| background-color: red; | |
| overflow: hidden; | |
| } | |
| #destination .img{ | |
| position: relative; | |
| top: 50px; | |
| left: 50px; | |
| width: 64px; | |
| height: 32px; | |
| overflow: hidden; | |
| } | |
| #destination .img img{ | |
| width: 100%; | |
| height: 100%; | |
| } | |
| </style> | |
| <body> | |
| <div id="destination"> | |
| <div class="img"> | |
| <img src="../2x2.png" /> | |
| </div> | |
| </div> | |
| </body> | |
| </html> |