Responsive Images with CSS

前端 未结 6 494
南方客
南方客 2020-11-29 19:27

I\'m finding it tricky to resize images to make them responsive.

I\'m developing a php application to automatically convert a website to a responsive version. I\'m a

6条回答
  •  死守一世寂寞
    2020-11-29 19:28

    .erb-image-wrapper img{
        max-width:100% !important;
        height:auto;
        display:block;
    }
    

    Worked for me.
    Thanks for MrMisterMan for his assistance.

提交回复
热议问题