第 60 题:已知如下代码,如何修改才能让图片宽度为 300px ?注意下面代码不可修改。
作者:互联网
<img src="./down.png" style="width:480px !important" />
答案
<img src="1.jpg" style="width:480px!important; max-width: 300px">
<img src="1.jpg" style="width:480px!important; transform: scale(0.625, 1);" >
<img src="1.jpg" style="width:480px!important; width:300px!important;">
2.js方法 document.getElementsByTagName("img")[0].setAttribute("style","width:300px!important;")
标签:style,img,代码,300px,60,修改 来源: https://www.cnblogs.com/zhanghaian/p/16692904.html