一、div+css佈局
1.css水平垂直居中
方法1:相容性最好的方法
.box{ position: absolute; top: 0; right: 0; left: 0; bottom: 0; margin: auto; width: 200px; height: 200px; background-color: #eee; }
方法2: css3 transform屬性
.box{ position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 200px; height: 200px; background-color: #eee; }
方法3: flex ie11才支持用mdn查看屬性的屬性相容性與應用實例
display: flex; 設定父容器為彈性盒子flex-direction: row; 定義父容器的彈性項目以主軸排列
justify-content: center; 定義彈性項目在主軸X的排列方式,主要用於水平居中文字align-items:
center; 定義彈性項目在側軸Y的排列方式,主要用於垂直居中多行文字
.box-wrapper{ width: 1000px; /*需要给父容器设置宽高*/ height: 1000px; background-color: #e9e9e9; display: flex; /*设置父容器为弹性盒子*/ justify-content: center; /*定义弹性项目在主轴X的排列方式,主要用于水平居中文字*/ align-items: center; /*定义弹性项目在侧轴Y的排列方式,主要用于垂直居中多行文字*/ } .box{ width: 200px; /*弹性盒子的项目*/ height: 200px; background-color: #eee; }
更多css項目中常用知識總結相關文章請關注PHP中文網!