ホームページ > 記事 > ウェブフロントエンド > CSSで垂直方向の中央揃えを実現するにはどのような方法がありますか?
CSS で垂直方向の中央揃えを実現する方法は次のとおりです:
1. 行の高さを使用して中央揃えを実現します。この方法は純粋なテキストに適しています。
<!-- css --> <style> .parents { height: 400px; line-height: 400px; width: 400px; border: 1px solid red; text-align: center; } .child { background-color: blue; color: #fff; } </style> </head> <body> <!-- html --> <div class="parents"> <span class="child">css布局,实现垂直居中</span> </div> </body>
効果:
(推奨チュートリアル: CSS チュートリアル)
2. 相対値を設定することで、親コンテナの位置、子の絶対位置はレベルで設定され、ラベルはマージンを介して適応的に中央に配置されます;
<!-- css --> <style> .parents { height: 400px; width: 400px; border: 1px solid red; position: relative; } .child { width: 200px; height: 100px; line-height: 100px; text-align: center; color: #fff; background-color: blue; /* 四个方向设置为0, 然后通过margin为auto自适应居中 */ position: absolute; top: 0; right: 0; bottom: 0; left: 0; margin: auto; } </style> </head> <body> <!-- html --> <div class="parents"> <span class="child">css布局,实现垂直居中</span> </div> </body>
効果:
3. フレキシブル レイアウトのフレックス親設定表示: flex; 適応センタリングを実現するために子のマージンを auto に設定します;
<!-- css --> <style> .parents { height: 400px; width: 400px; border: 1px solid red; display: flex; } .child { width: 200px; height: 100px; line-height: 100px; text-align: center; color: #333; background-color: yellow; margin: auto; } </style> </head> <body> <!-- html --> <div class="parents"> <span class="child">css布局,实现垂直居中</span> </div> </body>
効果:
4. 親は相対位置を設定し、子は絶対位置を設定します。これは、変位変換によって実現されます。
<!-- css --> <style> .parents { height: 400px; width: 400px; border: 1px solid red; position: relative; } .child { width: 200px; height: 100px; line-height: 100px; text-align: center; color: #fff; background-color: green; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); } </style> </head> <body> <!-- html --> <div class="parents"> <span class="child">css布局,实现垂直居中</span> </div> </body>
効果:
5。親は、位置を設定します。エラスティック ボックスとそのエラスティック ボックスの関連プロパティを設定します;
<!-- css --> <style> .parents { height: 400px; width: 400px; border: 1px solid red; display: flex; justify-content: center; /* 水平 */ align-items: center; /* 垂直 */ } .child { width: 200px; height: 100px; color: black; background-color: orange; } </style> </head> <body> <!-- html --> <div class="parents"> <span class="child"></span> </div> </body>
効果:
6. グリッド レイアウト、親はテーブル形式に変換され、次に、子は inline または inline ブロックを設定することによって実装されます。 (vertical-align: middle を使用するための前提条件は、インライン要素および表示値が table-cell である要素であることに注意してください)。
効果:
<!-- css --> <style> .parents { height: 400px; width: 400px; border: 1px solid red; display: table-cell; text-align: center; vertical-align: middle; } .child { width: 200px; height: 100px; color: #fff; background-color: blue; display: inline-block; /* 子元素设置行内或行内块 */ } </style> </head> <body> <!-- html --> <div class="parents"> <span class="child"></span> </div> </body>
関連ビデオ チュートリアルの推奨事項: css ビデオ チュートリアル
以上がCSSで垂直方向の中央揃えを実現するにはどのような方法がありますか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。