Skip to main content
deleted 1 character in body
Source Link
Krishna Jangid
  • 5.4k
  • 6
  • 30
  • 36
#imageDiv:hover ~ #detailDiv
{
    z-index: -999 !important;
}

here

#imageDiv is first div that to be hover and

#detailDiv is second div on that css will apply on hover

so if i hover on first div then zindex will assign to second div

Works for me

#imageDiv:hover ~ #detailDiv
{
    z-index: -999 !important;
}

here

#imageDiv is first div that to be hover and

#detailDiv is second div on that css will apply on hover

so if i hover on first div then zindex will assign to second div

Works for me

#imageDiv:hover  #detailDiv
{
    z-index: -999 !important;
}

here

#imageDiv is first div that to be hover and

#detailDiv is second div on that css will apply on hover

so if i hover on first div then zindex will assign to second div

Works for me

added 18 characters in body
Source Link
Krishna Jangid
  • 5.4k
  • 6
  • 30
  • 36
#imageDiv:hover ~ #detailDiv
{
    z-index: -999 !important;
}

here

#imageDiv is first div that to be hover and

#detailDiv is second div on that css will apply on hover

so if i hover on first div then zindex will assign to second div

Works for me

#imageDiv:hover ~ #detailDiv
{
    z-index: -999 !important;
}

here

#imageDiv is first div that to be hover and

#detailDiv is second div on that css will apply on hover

so if i hover on first div then zindex will assign to second div

#imageDiv:hover ~ #detailDiv
{
    z-index: -999 !important;
}

here

#imageDiv is first div that to be hover and

#detailDiv is second div on that css will apply on hover

so if i hover on first div then zindex will assign to second div

Works for me

Source Link
Krishna Jangid
  • 5.4k
  • 6
  • 30
  • 36

#imageDiv:hover ~ #detailDiv
{
    z-index: -999 !important;
}

here

#imageDiv is first div that to be hover and

#detailDiv is second div on that css will apply on hover

so if i hover on first div then zindex will assign to second div