CSS案例

 

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"> 
<title>饭桶教程(kuaikuaixuan.com)</title> 
<style>
img.normal {width:auto;}
img.big {width:50%;}
img.small {width:10%;}
</style>
</head>
<body>
<img class="normal" src="/images/logocss.gif" width="95" height="84" /><br>
<img class="big" src="/images/logocss.gif" width="95" height="84" /><br>
<img class="small" src="/images/logocss.gif" width="95" height="84" />
</body>
</html>