코드/Html & CSS

hover IE7 Bug

Yeah-Panda 2011. 5. 17. 22:49



:hover pseudo class 이용시 CSS selector에 'A' tag 를 명시하지 않은 경우, IE7에서 마우스를 움직일 때마다 cpu 점유율이 올라가는 문제가 있음. :hover pseudo class 이용시 반드시 'A'를 명시할 것.

/* problem */
#notice_area .txt:hover{color:#4559E9;}


/* fixed */
#notice_area a.txt:hover{color:#4559E9;}







'코드 > Html & CSS' 카테고리의 다른 글

상위 요소 값의 상속  (0) 2011.05.28
Inherit, 자식 선택자.  (0) 2011.05.28
각종 속성 타겟팅.  (0) 2011.05.18
유사 클래스 선택자  (0) 2011.05.11
브라우저 모드  (0) 2011.05.11