第一句子网 - 唯美句子、句子迷、好句子大全
第一句子网 > 通过display:flex实现CSS垂直居中

通过display:flex实现CSS垂直居中

时间:2023-01-24 02:36:20

相关推荐

通过display:flex实现CSS垂直居中

父元素添加

display: flex;

子元素添加

align-self: center

示例

<div class='father'><div class='child'></div></div><style>.father {background: #ff6b89;height: 600px;width: 100px;dispaly: flex;}.child {background: #6a83ca;height: 100px;width: 100px;align-self: center; }</style>

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。