2021前端學習筆記-第一章第四節-內聯覆蓋元素寬度

itwangyang發表於2021-02-19

在不改變當前程式碼的情況下,使這張圖片的寬度為300px?

<img src="1.jpg" style="width:480px!important"/>

1.css方法

html <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方法

JavaScript document.getElementsByTagName("img")[0].setAttribute("style","width:300px!important;")

相關文章