0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

要素を中央に持っていくまとめ(HTML,CSS)

Last updated at Posted at 2021-05-05

要素を中央に持ってくるやり方を毎回忘れるのでまとめてみました。
他にもやり方があるかもしれませんので、気づいた方おりましたら
コメント頂けますと幸いです。

①文字列の高さを中央にする

index.html
    <style>
    .container {
     height: 100px;
     position: relative;
     box-sizing: border-box;
     border: 5px solid #76d3f4;
     box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
     margin: 20px 0px;
    }     
   .char_heigth-center {
     /*文字要素の高さを整える*/
     line-height: 100px;
    }
    </style>
    <div class="container">
      <p class="char_heigth-center">文字の高さを中央に</p>
    </div>

結果
スクリーンショット 2021-05-05 13.53.15.png

②文字の横幅を中央にする
text-align:center;でも可能だが、改行して複数行になると
両方中央寄せになるのうで使い分けが必要

index.html
    <style>
    .container {
    ・・・
    }
    .char_width-center {
       display: flex;
       justify-content: center;
     }
    </style>
    <div class="container">
      <p class="char_width-center">文字の横の配置を中央に</p>
    </div>

結果
スクリーンショット 2021-05-05 13.53.49.png

③連続した文字要素を中央に配置(縦と横を中央に)

index.html
    <style>
    .container {
    ・・・
    }     
    .char_heigth-center {
     line-height: 100px;
    }
    .char_width-center {
     display: flex;
     justify-content: center;
    }
    .disflex {
     display: flex;
    }
    .items {
      margin-right: 10px;
    }
    </style>
    <div class="container">
      <div class="disflex char_heigth-center char_width-center">
        <p class="items">文字列1</p>
        <p class="items">文字列2</p>
        <p class="items">文字列3</p>
      </div>
    </div>

結果
スクリーンショット 2021-05-05 13.54.04.png

④文字列以外の配置を中央にする
画像のように中の文字列は中央に配置されないので注意

index.html
    <style>
    .container {
    ・・・
    }       
   .element-center {
     width: 60%;
     height: 60%;
     margin: auto;
     position: absolute;
     top: 0;
     bottom: 0;
     left: 0;
     right: 0;
     border: 5px solid #ff0000;
     box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
    }
    </style>
    <div class="container">
      <div class="element-center">テスト</div>
    </div>

追記:以下の構文でも可能みたいです。
.element-center {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
  または親要素に
.element-align {
display: flex;
justify-content: center;
align-items: center;
}
 ※position は要素ごとにを中央配置できるが、
  flexは親要素の中身全てが中央配置になるため、使い分けは必要です。
追記2:右下に配置する場合は以下のようにする
.element-right-bottom{
position: absolute;
right: 0;
bottom: 0;
}

結果
スクリーンショット 2021-05-05 14.06.25.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?