frontEnd_book
frontEnd_book copied to clipboard
已知如下代码,如何修改才能让图片宽度为 300px ?注意下面代码不可修改。
<img src="1.jpg" style="width:480px!important;”>
// 使用max-width: 300px,important优先级失效
<img src="1.jpg" style="width:480px!important;max-width = 300px”>