css常见问题解决方法
div中的图片和文字垂直和水平居中
图片和文字父盒子 {
display: flex;
align-items: center;/*子元素垂直居中*/
justify-content: center;/*子元素水平居中*/
}
css编程时常见问题解决方法
阅读 164
2022-04-18
图片和文字父盒子 {
display: flex;
align-items: center;/*子元素垂直居中*/
justify-content: center;/*子元素水平居中*/
}
相关推荐
精彩评论(0)