HTML List isn't vertically aligned when using floating images

前端 未结 3 1371
遇见更好的自我
遇见更好的自我 2020-12-04 03:47

I have a list with titles, text and images, and sometimes, when there is not enough text, my lists start breaking, ie. the list starts nesting itself.

3条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-12-04 04:35

    Remove the CSS you have applied in jSfiddle i.e

    img {
        float: left;
        margin-right: 0.1em;
    }
    

    Instead just add following CSS

    ul{
    display:block;
    clear:both;
    }
    

提交回复
热议问题