How do I resize an image while keeping the aspect ratio in CSS?

后端 未结 4 1783
半阙折子戏
半阙折子戏 2020-12-16 10:17

I have a large image. I want to display it on its on own a web page, and when doing this without any CSS it fills the whole page and is too big to display at once (scroll ba

4条回答
  •  温柔的废话
    2020-12-16 10:37

    Just set the width to auto:

    img {
       width: auto;
       max-height: 100%;
    }
    

    Here's the fiddle: http://jsfiddle.net/6Y5Zp/

提交回复
热议问题