首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > CSS >

CSS3 水准垂直居中

2013-08-01 
CSS3 水平垂直居中Center the child elements of a div box by using the box-align and box-pack propert

CSS3 水平垂直居中
Center the child elements of a div box by using the box-align and box-pack properties together:div{width:350px;height:100px;border:1px solid black;/* Internet Explorer 10 */display:-ms-flexbox;-ms-flex-pack:center;-ms-flex-align:center;/* Firefox */display:-moz-box;-moz-box-pack:center;-moz-box-align:center;/* Safari, Opera, and Chrome */display:-webkit-box;-webkit-box-pack:center;-webkit-box-align:center;/* W3C */display:box;box-pack:center;box-align:center;}

?From:http://www.w3schools.com/cssref/css3_pr_box-pack.asp

热点排行