1. 程式人生 > >Less的!important關鍵字

Less的!important關鍵字

har ref http com wan tar bible href col

Less的!important關鍵字

在調用 mixin 時,如果在後面追加 !important 關鍵字,就可以將 mixin 裏面的所有屬性都標記為 !important。如,以下Less代碼:

  1. .mixin() {
  2. color: #900;
  3. background: #F7BE81;
  4. }
  5. h2 {
  6. .mixin() !important;
  7. }

編譯後的CSS代碼為:

  1. h2 {
  2. color: #900 !important;
  3. background: #F7BE81 !important;
  4. }

Less的!important關鍵字