1. 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 属性を変換
.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; 主軸に沿って配置する親コンテナの flex 項目を定義します
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 中国語 Web サイトに注意してください。