blob: 65c999d6d990133e1d97ec03fb67deefbcd95d83 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
<!DOCTYPE html>
<html>
<head>
<title>background-size: 100% 100%; stretch reference</title>
<style type="text/css">
#outer
{
border: 10px solid black;
width: 60px;
height: 120px;
}
#inner1
{
background: blue;
width: 15px;
height: 120px;
display: inline-block;
background-image: url(blue-16x20.png);
/* obscure sampling artifacts at the color boundary */
border-right: 5px solid black;
}
#inner2
{
background: lime;
width: 35px;
height: 120px;
display: inline-block;
background-image: url(green-16x20.png);
/* obscure sampling artifacts at the color boundary */
border-left: 5px solid black;
}
</style>
</head>
<body>
<div id="outer"><div id="inner1"></div><div id="inner2"></div></div>
</body>
</html>
|