blob: e8b2ab0f238b37e8a05d56b6b9decb69ebf3ba32 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!DOCTYPE html>
<html>
<head>
<title>Test image aspect ratio</title>
<style>
body {margin: 20px}
</style>
</head>
<body>
<img src="pic.png" style="height:100px" />
<img src="pic.png" style="max-height:100px" />
<img src="pic.png" style="width:100px" />
<img src="pic.png" style="max-width:100px" />
<a href="#"><img src="pic.png" style="max-width:100px" /></a>
</body>
</html>
|