Jimmy
Jimmy

Reputation: 285

Position absolute in ie7 problems

Im having a bit of trouble with ie7(who hasnt)

I want the slide thats currently below the 3 content divs to be visible, and the content to start at the bottom of the slider. as it is in the other browsers and verions. but i cannot get it to work in internet explorer 7... its like it doesnt know the height of the element, this works in every other major browser though including ie 8, 9

Upvotes: 1

Views: 2956

Answers (1)

sandeep
sandeep

Reputation: 92803

you have define the position absolute cordinates

like this

#Slider {
    left: 0;
    position: absolute;
    top: 210px;
}

Upvotes: 4

Related Questions