HTML, CSS

CSS – !important

  • !important
    • 중복 적용이 나타났을때 해당 구문 이후의 CSS 적용을 무시
.important-test {
  color: red;
}

.important-test {
  color: grey; 
}
.important-test {
  color: red !important;
}

.important-test {
  color: grey; 
}
.important-test {
  color: red !important;
}

.important-test {
  color: grey; 
}

.important-test {
  color: black !important;
}

답글 남기기

이메일 주소는 공개되지 않습니다. 필수 항목은 *(으)로 표시합니다

이 사이트는 스팸을 줄이는 아키스밋을 사용합니다. 댓글이 어떻게 처리되는지 알아보십시오.