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

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


CSSを使用して要素を垂直方向および水平方向に中央揃えするには、コードは次のとおりです-

<!DOCTYPE html>
<html>
<head>
<style>
   body {
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
   }
   .centered {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 200px;
      border: 3px solid rgb(0, 70, 128);
   }
</style>
</head>
<body>
<h1>Centering Example</h1>
<div class="centered">
<h2>This text is centered vertically and horizontally both</h2>
</div>
</body>
</html>

出力

上記のコードは次の出力を生成します-

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


  1. CSSを使用してWebサイトを水平方向に中央揃えする方法は?

    CSSを使用してWebサイトを水平方向に中央揃えにするためのコードは、次のとおりです- 例 <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1" /> <style>    body {       background: rgb(255, 238, 0);       fon

  2. CSSを使用して円形パス内の要素を移動する方法は?

    CSSアニメーションは、組み合わせ、回転、変換することで、さまざまな方法で要素を変換するのに役立ちます。 次の例は、円形パスで要素を移動する方法を示しています。 例 <!DOCTYPE html> <html> <head> <style> div {    margin: 8%;    width: 35px;    height: 35px;    border-radius: 5px;    background: red;