已知如下代码,如何修改才能让图片宽度为 300px ?注意下面代码不可修改。

<img src="1.jpg" style="width:480px!important;”>
总结:
max-width:300px 
transform: scale(0.625); 
box-sizing:border-box;
padding:90px; 
zoom:0.625; 

来个奇淫技巧

img {
      animation: test 0s forwards;
}
@keyframes test {
    from {
        width: 300px;
    }
    to {
        width: 300px;
    }
}        

利用CSS动画的样式优先级高于!important的特性

posted @ 2019-07-27 09:17  来亦何哀  阅读(925)  评论(0编辑  收藏  举报