code

css에서 !보다 더 중요한 것이 있나요?

starcafe 2023. 2. 12. 18:04
반응형

css에서 !보다 더 중요한 것이 있나요?

워드프레스 테마는 기본적으로 !important 조건으로 폰트 색상을 추가하는 것으로 인라인 스타일로 나타납니다.제가 원하는 것이 아닌데, 제가 할 수 있는 일이 없을까요?이미 시도했습니다!중요!중요 :)

인라인 스타일을 덮어쓸 수 있는 유일한 것은!important는 하위 요소의 스타일입니다.

<div style='color: red ! important'>
     <span style='color: green'>This is green.</span>
</div>

인라인 html 스타일은 다음과 같이 덮어쓸 수 있습니다.

div[style] { color: red !important; }

언급URL : https://stackoverflow.com/questions/6957250/is-there-anything-more-important-than-important-in-css

반응형