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.

padding(パディング)の書き方-CSS

Posted at

paddingの書き方

指定したい値が方向ごとに異なる場合、個別で指定する方法もありますが、まとめて書くことも可能。
値を4つ、スペース区切りで指定した場合、「上」「右」「下」「左」の順で適用され
値を2つ指定した場合、「上下」「左右」の順に適用されます

sample
.sample1{
  padding:20px 10px 20px 10px;
/*  上(top) 右(right) 下(bottom) 左(left) 
      時計回りに指定 */
}

.sample2{
  padding:20px 10px;
/*      上下 左右   */
}
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?