Bootstrap

bootstrap中的垂直居中

利用bootstrap搭建页面的时候,遇到字体和图片如何垂直居中的问题,解决方法如下

首先增加一个类:

.son{
   
	display: flex;
    justify-content:center;
    align-items:Center;
}

这个类直接用于你需要垂直居中的那个div
注意 除此之外还需要增加一个类

.father{
   
	height: 100%
;