I am having some trouble when I hover over a DIV, the DIVs underneath slide up underneath the DIV I’m hovering over. How can Is top them from doing this?
Here is a jsfiddle to illustrate the problem.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I inadvertently solved this problem while trying to fix another one:
I changed this:
.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;
}
to this:
.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;
}
And it solved my problem.