Search code examples
cssinternet-explorer-7positioncss-position

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


Solution

  • you have define the position absolute cordinates

    like this

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