css/responsive-image-max-height.html
<!doctype html>
<html lang=en>
<head>
<meta charset=utf-8>
<style>
img {
max-width: 100%;
height: auto;
}
</style>
</head>
<body>
<div>Before</div>
<img src="../svg/hole.svg">
<div>After</div>
</body>
</html>
<!doctype html>
<html lang=en>
<head>
<meta charset=utf-8>
<style>
img {
max-width: 100%;
height: auto;
}
</style>
</head>
<body>
<div>Before</div>
<img src="../svg/hole.svg">
<div>After</div>
</body>
</html>