mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
25 lines
378 B
HTML
25 lines
378 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>background-size: auto; reference</title>
|
|
<style type="text/css">
|
|
#outer
|
|
{
|
|
border: 1px solid black;
|
|
width: 64px;
|
|
height: 128px;
|
|
}
|
|
#inner
|
|
{
|
|
width: 32px;
|
|
height: 32px;
|
|
background-image: url(aqua-32x32.png);
|
|
background-repeat: no-repeat;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="outer"><div id="inner"></div></div>
|
|
</body>
|
|
</html>
|