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.

CSS よく使う操作

0
Last updated at Posted at 2021-10-21
#  横に並べたいとき
display: flex;

#  中のものを中央に置きたい
text-align: center

#  中のものを左に置きたい
text-align: left

#  中のものを右に置きたい
text-align: right

#  上下上下のどれかの外枠をMaxまで広げたいとき
margin-〇〇: auto

#  上下上下のどれかの幅をMaxまで広げたいとき
padding-〇〇: auto

#  2つ以上のブロックを均等な幅で置きたいとき
justify-content: space-between;

#  横幅をMaxで使用したいとき
width: 100%

#  縦幅をMaxで使用したいとき
height: 100%
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?