LoginSignup
0
0

More than 3 years have passed since last update.

marginなどの指定方法、ショートハンド(省略方法)

Posted at

上、右、下、左の順に指定する方法

.block {
  margin: 50px 20px 50px 20px;
}

四方同じ数値で指定する方法

.block {
  margin: 50px;
}

上下、左右の順に指定する方法

.block {
  magin: 50px 20px;
}

上、左右、下の順に指定する方法

.block {
  margin: 50px 20px 80px;
}
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