blob: 6335168ff5a0163d2d5a208a8b38977fdc979725 [file] [log] [blame]
dino@apple.com5b970582014-02-18 02:31:18 +00001<style>
2div {
3 position: relative;
4 width: 50px;
5 height: 50px;
6 margin-bottom: 5px;
7}
8img {
9 max-width: 100%;
10 max-height: 100%;
11}
12
13#b, #c, #e, #g {
14 -webkit-aspect-ratio: from-intrinsic;
15}
16
17#d, #e {
18 min-width: 20px;
19 max-width: 20px;
20 min-height: 20px;
21 max-height: 20px;
22}
23
24#f, #g {
25 width: auto;
26 height: auto;
27 min-width: 30px;
28 min-height: 30px;
29}
30
31#results {
32 width: initial;
33 height: initial;
34 max-width: initial;
35 max-height: initial;
36}
37</style>
38
39<!-- auto sizing within constrained bounds -->
40<div><img id="a" src="badchess-wide.png"></div>
41
42<!-- auto sizing within constrained bounds and aspect ratio -->
43<div><img id="b" src="badchess-wide.png"></div>
44
45<!-- auto sizing within constrained bounds and aspect ratio -->
46<div><img id="c" src="badchess-tall.png"></div>
47
48<!-- specified sizing with min/max constraints -->
49<div><img id="d" src="badchess-wide.png"></div>
50
51<!-- specified sizing with min/max constraints and aspect ratio -->
52<div><img id="e" src="badchess-wide.png"></div>
53
54<!-- auto sizing with min constraints -->
55<div><img id="f" src="badchess-wide.png"></div>
56
57<!-- auto sizing with min constraints and aspect ratio -->
58<div><img id="g" src="badchess-wide.png"></div>