0
2

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 5 years have passed since last update.

marginとpadding

Last updated at Posted at 2020-01-22

marginとpadding

「margin」「padding」はWEBページ上の余白を作ることができる。 mariginとpaddingの違いは空白のできる場所である。 ![要素.png](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/556803/12b26c43-3b0c-6ec6-f600-5215d08d5dcf.png)

上記の写真を見ると違いが分かります。
margin=要素の外側の余白  
padding=要素の内側の余白
border=要素とpaddingの外側に表示される   

上(top) 右(right) 下(bottom) 左(left)
padding-top padding-right padding-bottom padding-left
margin-top margin-right margin-bottom margin-left

(例)
また数値はまとめて指定でき、時計回りの方向。
padding: 10px 20px 30px 40px;     
10px=左 20px=右 30px=下 40px=左

0
2
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
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?