mirror of
https://github.com/servo/servo.git
synced 2025-06-23 16:44:33 +01:00
39 lines
536 B
HTML
39 lines
536 B
HTML
<!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>
|