CSS实现图片快速等比例缩放,效果佳

初学者在实现图片等比例缩放,通常会使用js编写逻辑来控制高或宽,达到自动缩放的效果。

 

这里提供一种纯CSS的图片缩放功能,请看代码:

<style type="text/css">

    .auto-width {MARGIN: auto;WIDTH: 100px;}

    .auto-width img{MAX-WIDTH: 100%!important;HEIGHT: auto!important;width:expression(this.width > 100 ? "100px" : this.width)!important;}

</style>



<div class="auto-width">

    <img src="_img/test.png" />

</div>

 

你可能感兴趣的:(css)