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 1 year has passed since last update.

HTML+CSS 天地センターの仕方

Last updated at Posted at 2023-07-06

背景に円+SVG書き出ししたアイコンを天地センター寄せ

index.html
<div id="container">
        <h1><div class="login-circle"><svg>hogehoge</svg></div></h1> 
</div>
style.scss
.login-circle{
    top:50%;
    margin:0 auto;
    background: $cl-dkbl;
    width:127px;
    line-height: 127px;
    border-radius: 64px;
}

今回の天地センターは、line-height: 127px;で、line-heightを使った。

天地センターのやり方はいろいろあるので、別途、折を見てまとめるようにする。

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?