首页 > 代码库 > 居中样式
居中样式
每次都要纠结半天,这个居中。
一、子元素不固定
1 .pro-car-inner{//子元素
max-width:1000px;
color:#fff;
position:absolute;
top:150px; left:0;
bottom:0; right:0;
margin:auto;
}//这种无法垂直居中 都兼容
2.
.pro-car-con{height:500px;width:100%; justify-content:center;align-items:center;display:flex;} //IE无法兼容
3 .sol-main {//父元素
height:
width:
-webkit-box-align:
-webkit-box-pack: ;
display:
text-align:
}
4. .sol-main {//父元素
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: flex;
align-items: center;
justify-content: center;}//不兼容ie
display: -moz-box;
display: -ms-flexbox;
display: flex;
align-items: center;
justify-content: center;}//不兼容ie
居中样式
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。