CSS
 Computer >> コンピューター >  >> プログラミング >> CSS

CSSで要素を垂直方向に中央揃え


CSSで要素を垂直方向の中央に配置するには、上下のパディングを使用します。

次のコードを実行して、要素を中央に配置することができます

<!DOCTYPE html>
<html>
   <head>
      <style>
         .center {
            padding: 50px 0;
            border: 2px solid blue;
         }
      </style>
   </head>
   <body>
      <h2>Center Vertically</h2>
      <p>In this example, we use the padding property to center the div element vertically:</p>
      <div class = "center">
         <p>I am vertically centered.</p>
      </div>
   </body>
</html>

出力

CSSで要素を垂直方向に中央揃え


  1. CSSでボタン要素を垂直方向と水平方向の中央に配置するにはどうすればよいですか?

    CSSを使用してボタンを垂直方向および水平方向に中央揃えするには、コードは次のとおりです- 例 <!DOCTYPE html> <html> <head> <style>    body {       font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;    }    .centered {       display: flex; &

  2. CSSで要素を垂直方向と水平方向に中央揃えする方法は?

    CSSを使用して要素を垂直方向および水平方向に中央揃えするには、コードは次のとおりです- 例 <!DOCTYPE html> <html> <head> <style>    body {       font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;    }    .centered {       display: flex; &n