LoginSignup
0
0

More than 3 years have passed since last update.

CSSを変更しても、サイズが変わらない設定方法

Last updated at Posted at 2020-10-20

CSSを変更しても、サイズが変わらない設定方法

自分への備忘録として、たぶん忘れてしまいそうだから。

.cssのpaddingを変更したことにより、
大きさが変更されてしまった。固定したい場合の記述。

paddingやborderの設定変えても、
要素の大きさはwidthやheightで指定したサイズのまま変更しない設定方法

app/assets/stylesheets/application.css
* {
  box-sizing: border-box;
}

上記を忘れないよにすれば、大丈夫。

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