Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Overlay one div over another on hover Reply To: Overlay one div over another on hover

#280265
JeroenR
Participant

Maybe you could fake it by adding the following? This way the width for both of them is changed as if the first one is on top of the second.

.message:hover {
  width: 60%;
}
.message:hover + .info {
  width: 0;
}