web/css

css important

낼스 2014. 5. 22. 16:46
 
■  기본적으로는 후에 선언된 style이 적용되게 되는데,
    important 키워드를 적용된 style이 가장 높은 우선순위를 갖게된다.
 
<style>
.a1, .a2 { color:red !important;}
.a1 { color:blue; }
</style>
<html>
<p class="a1">안녕하세요</p>
<p class="a2">반갑습니다</p>
</html>

※ 참고 : http://www.dweb.co.kr/bbs/board.php?bo_table=webstandard&wr_id=11