!important;
해당 css값을 우선 적용한다.
* {
color : red;
}
.item-desc {
color: blue ;
}
현재의 코드에서는 모든 글자색을 red로 설정해주었지만
itme-desc의 부분에서는 글자색이 blue로 나올것이다.
but
* {
color : red !important;
}
.item-desc {
color: blue ;
}
!important를 붙여준다면 모든 글자의 색이 red로 우선적용되어
red로 나오게 될것이다.