Bootstrap how to get text to vertical align in a div container

前端 未结 3 1107
Happy的楠姐
Happy的楠姐 2020-12-29 05:03

What is the best/proper way to vertically align the text in the middle of its column? The image height is statically set in the CSS.

I have tried setting an outer di

3条回答
  •  萌比男神i
    2020-12-29 05:22

    Could you not have simply added:

    align-items:center;
    

    to a new class in your row div. Essentially:

    .align_center { align-items:center; }

提交回复
热议问题