My inline-block elements are not lining up properly

后端 未结 5 711
醉话见心
醉话见心 2020-11-21 11:29

All of the elements within .track-container should line up nice and in line, each side by side, constrained by the 200px height they\'ve been given with no weir

5条回答
  •  一向
    一向 (楼主)
    2020-11-21 12:22

    You need to add vertical-align:top to those two elements:

    .album-artwork, .track-info {
        vertical-align:top;
    }
    

    jsFiddle example

    The default vertical alignment is baseline, but you are looking for top instead.

提交回复
热议问题