代码示例:(标识:eg_csse_dim_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="/static/demo/images/eg_smile.gif" />
<br />
<img class="big" src="/static/demo/images/eg_smile.gif" />
<br />
<img class="small" src="/static/demo/images/eg_smile.gif" />

</body>
</html>
运行结果: