How to override max-width for specific div?

前端 未结 5 2094
后悔当初
后悔当初 2020-12-18 21:58

I am searching for the following solution. In my CSS I have the following:

img, a img { 
    max-width: 100%;
    vertical-align: middle; 
}
<
5条回答
  •  独厮守ぢ
    2020-12-18 22:35

    max-width: auto !important;
    

    auto in max-width is not a valid property. You should replace it with

    max-width: none !important;
    

提交回复
热议问题