Stretch Image to Fit 100% of Div Height and Width

前端 未结 4 976
余生分开走
余生分开走 2020-12-10 01:11

I have a div with the following CSS

#mydiv{
    top: 50px;
    left: 50px;
    width: 200px;
    height: 200px;
}

and my HTML looks like th

4条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-12-10 01:54

    Instead of setting absolute widths and heights, you can use percentages:

    #mydiv img {
        height: 100%;
        width: 100%;
    }
    

提交回复
热议问题