Auto image resize based on browser window dimensions

后端 未结 4 1109
天涯浪人
天涯浪人 2020-12-14 04:52

I have a basic web page layout with a 100% width header and a sticky footer. In between the two I have a large graphic.

I would like the graphic to resize dynamicall

4条回答
  •  南方客
    南方客 (楼主)
    2020-12-14 05:34

    img.thespecialimage {
      min-height : 100%;
      min-width : 100%;
      max-height : 100%;
      max-width : 100%;
    }
    

提交回复
热议问题