Clearing inline-blocks?

前端 未结 4 644
清歌不尽
清歌不尽 2021-02-05 02:31

I have

.centered-holder {
    margin-left: auto;
    margin-right: auto;
    clear: left;
    display: inline-block;
}

Then

&l         


        
4条回答
  •  無奈伤痛
    2021-02-05 03:13

    If you remove display: inline-block; they will stack one on top of the other.

    Block-level elements begin on a new line, and a DIV is block-level by default.

提交回复
热议问题