LoginSignup
9
7

More than 5 years have passed since last update.

ng-styleではまった

Last updated at Posted at 2015-02-24

なんか地味にはまったのでメモ

○ ng-style="{ margin: 0 }"
☓ ng-style="{ margin: 10px }"
○ ng-style="{ margin: '10px' }"

☓ ng-style="{ margin-right: '10px' }"
○ ng-style="{ 'margin-right': '10px' }"

☓ ng-style="{ margin: '10px'; padding: '10px' }"
○ ng-style="{ margin: '10px', padding: '10px' }"

styleと違ってng-styleにオブジェクトを渡しているんだと気づけば当然なんだけど、

  • パラメータ
    • 0は数値なのでok
    • 10pxは文字列なのでシングルクォートで囲まないとだめ
  • key
    • marginはオブジェクトのkeyとして問題ない
    • maring-leftは、-が演算子として扱われるのでシングルクオートで囲まないとだめ
  • 区切り
    • styleのように;で区切ってはダメ
    • オブジェクトなので,で区切る
9
7
1

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
9
7