CSS Float does not stretch Div Height

前端 未结 4 1823
慢半拍i
慢半拍i 2021-02-03 15:42

I have had this problem for a long time when working with HTML/CSS and Floats.

In the image you can see I have a Box Div that is Floated left as there is many of these B

4条回答
  •  难免孤独
    2021-02-03 16:12

    Change your .module-box-body li to

    .module-box-body li {
        display: inline-block;
        margin: 0 12px 0;
        list-style: none;
    }
    

    Updated fiddle.

提交回复
热议问题