How to auto resize the image for responsive design with pure css?

前端 未结 8 1864
挽巷
挽巷 2021-02-14 16:42

I have tried to auto resize the image using the CSS property max-width, but it does\'t work in IE7 and IE8. Is there any way to auto resize the image with pure CSS

相关标签:
8条回答
  • 2021-02-14 17:09

    Doesn't IE 7&8 recognise the following:

    #my-div img
          {
             max-width:100%;
             _max-width:100%;
          }
    
    0 讨论(0)
  • 2021-02-14 17:13

    Use max-width: 100% with height:auto, plus width:auto for IE8:

    img 
     {
     max-width: 100%;
     height: auto;
     }
    
    /* Media Query to filter IE8 */
    @media \0screen 
      {
      img 
        { 
        width: auto;
        }
      }
    
    0 讨论(0)
提交回复
热议问题