Bootstrap 4 align elements right inside a col div

前端 未结 3 1619
暖寄归人
暖寄归人 2020-12-16 15:35

My question is pretty simple but I don\'t find a proper way (I mean not use absolute positionning of sub elements inside a relative position container) to achieve this in Bo

3条回答
  •  囚心锁ツ
    2020-12-16 16:23

    The btn-groupclass in that md-4 makes that DIV a flex container, so a regular text-right class for the alignment won't work. Instead, add justify-content: flex-end; in a style attribute to it:

    https://codepen.io/anon/pen/RpEYEM

    (note: I erased the p tag inside that DIV)

提交回复
热议问题