Making a div the same size as an image inside it

前端 未结 7 2291
佛祖请我去吃肉
佛祖请我去吃肉 2021-02-13 12:21

I have an div with the following code

HTML:

相关标签:
7条回答
  • 2021-02-13 12:49

    use this code:

    div#imgContainer {
        min-width: 250px;
        min-height: 250px;
        padding: 13px;
        display: inline-block; 
    }
    
    0 讨论(0)
提交回复
热议问题