blob: 96c1ea1fee9bc78effd948ade168ac1c1a64972b (
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; width:100px" />
<img src="pic.png" style="height:100px; width:100px" />
<img src="pic.png" style="height:100px; width:100px" />
<img src="pic.png" style="height:100px; width:100px" />
<a href="#"><img src="pic.png" style="height:100px; width:100px" /></a>
</body>
</html>
|