How to override max-width for specific div?

前端 未结 5 2098
后悔当初
后悔当初 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:40

    Are you just looking to unset the max-width property? If so, try:

    #pixel-perfect img {
        max-width: none;
    }
    

提交回复
热议问题