<html>
<head>
<style>
img.normal {
width: auto;
}
img.big {
width: 50%;
}
img.small {
width: 10%;
}
</style>
</head>
<body>
<h1>The width Property</h1>
<img class="normal" src="logocss.gif" width="95" height="84"><br>
<img class="big" src="logocss.gif" width="95" height="84"><br>
<img class="small" src="logocss.gif" width="95" height="84">
</body>
<!-- Mirrored from www.w3schools.com/cssref/tryit.asp?filename=trycss_dim_width_percent by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 27 Jan 2020 03:01:25 GMT -->
</html>