Display image at 50% of its “native” size

前端 未结 5 855
野趣味
野趣味 2020-11-29 19:39

I\'m putting an img tag in a document without knowing the width/height of the corresponding image:


5条回答
  •  暗喜
    暗喜 (楼主)
    2020-11-29 19:49

    This should work:

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

提交回复
热议问题