2012-10-15 3 views

답변

0

내가 실수로이 문제를 해결 다른이에

.calendar-event:hover { overflow: visible; background: none repeat scroll 0 0 #FAFAFA; border: solid 1px #999999; width: auto; line-height: 1.5em; height: auto; position: absolute; }

: :이 변경

.calendar-event:hover .event-title { overflow: visible; background: none repeat scroll 0 0 #FAFAFA; border: solid 1px #999999; width: auto; line-height: 1.5em; height: auto; position: absolute; }

을 그리고 그것은 내 문제를 해결 .

0

:

.calendar-event:hover { 
    overflow: visible; 
    background: none repeat scroll 0 0 #FAFAFA; 
    border: solid 1px #999999; 
    width: auto; 
    line-height: 1.5em; 
    height: auto; 
    position: absolute; 
} 

문제는 마지막 속성입니다. "position : absolute;"; 이로 인해 div가 브라우저의 일반적인 위치 지정 흐름에서 벗어납니다. 해결하는 동안

+0

나는 그렇게 하겠지만, hover 요소가 페이지의 다른 모든 요소보다 위에 있도록 유지해야한다고 생각합니다. – novicePrgrmr

관련 문제