Clearing inline-blocks?

前端 未结 4 597
清歌不尽
清歌不尽 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:05

    Changing display:inline-block to display:table may do the trick.

    By default, a table clears it's sibling elements (like a block div), and it's width expands to fit it's content (like an inline div).

提交回复
热议问题