Dynamic height for DIV

后端 未结 6 1725
慢半拍i
慢半拍i 2020-12-28 16:28

I have the following DIV

#products { height: 102px; width: 84%; padding:5px; margin-bottom:8px; border
6条回答
  •  萌比男神i
    2020-12-28 17:07

    Set both to auto:

    height: auto;
    width: auto;
    

    Making it:

    #products
    {
        height: auto;
        width: auto;
        padding:5px; margin-bottom:8px;
        border: 1px solid #EFEFEF;
    }
    

提交回复
热议问题