Flexbox not aligning item anymore when text is wrapped

后端 未结 2 1515
不思量自难忘°
不思量自难忘° 2021-01-28 08:31

I\'m struggeling with using a flexbox containter together with bootstrap 4 to align my elements horizontally centered.

This is what I have so f

2条回答
  •  星月不相逢
    2021-01-28 09:29

    Flexbox styles affects only direct children of the flex parent, in your situation it's img and a, but as soon as you wrap text inside a, flex can't affect this wrapper-element any more, cause it's not a direct children of the flex container. So if you want to wrap link text, add a class for centering text to the a element directly.

提交回复
热议问题