-
Notifications
You must be signed in to change notification settings - Fork 1
!important의 사용
hyunchulkwak edited this page Nov 4, 2013
·
1 revision
!important
주석(Annotation)을 이용하면 강제로 주어진 속성값의 중요도를 높이게 됩니다. 이것은 흔히 CSS 전반의 우선순위의 명확함이 통제가 어려운 상태로, 리팩토링이 필요하다는 것을 의미합니다. !important
가 더 많이 사용될 수록 개발자가 페이지에 스타일을 효과적으로 적용하는데 어려움을 겪고 있다는 것을 알 수 있습니다.
규칙(Rule) ID: important
이 규칙은 !important
의 사용을 억제하고자 하기 때문에, !important
가 사용되는 모든 경우에 경고를 하게 됩니다.
.mybox {
color: red !important;
}
- Don't use !important
- !important CSS Declarations: How and When to Use Them
- When using !important is the right choice
원문: https://github.com/stubbornella/csslint/wiki/Disallow-%21important