LoginSignup
0
0

More than 1 year has passed since last update.

要素を中央配置するにはこれ!

Last updated at Posted at 2022-01-12
HTML
<div class="main">
   <div class="container">
   <div>
</div>
CSS
.main {
  position: relative;
}

.container {
  position: absolute;   
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

上記のように、position: relative;とposition: absolute;を使うことによって、要素を中央配置することができます!

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