Saturday, August 17, 2013

CSS dimension height percent

<html>
<head>
<style type="text/css">
img.normal {height:auto}
img.big {height:50%}
img.small {height:10%}
</style>
</head>

<body>
<img class="normal" src="bird.jpg" width="150" height="112" /><br /><br />
<img class="big" src="bird.jpg" width="150" height="112" /><br /><br />
<img class="small" src="bird.jpg" width="150" height="112" />
</body>
</html>

Result


No comments: