Category: Nadagame
Category:Indian comedy films
Category:Indian buddy films
Category:Indian action comedy films
Category:Films set in Bangalore
Category:Directorial debut films
Category:2000s buddy comedy films
Category:2000s action comedy films
Category:2000s heist films
Category:Films scored by Sandeep Chowta
Category:Films shot in Bangalore
Category:Films shot in Hyderabad, India
Category:Films shot in Andhra PradeshQ:
Z-index and CSS3 transform not rendering correctly in IE8
Here is a fiddle of the current situation.
I'm currently developing a website that I have a header and footer at the top and bottom of the page respectively. I wanted the top of the page to sit on top of the header, and the bottom of the page to sit on top of the footer.
I found the following line of code from this answer to stackoverflow and it worked perfectly for me:
.top {
position: absolute;
top: 100%;
left: 0;
right: 0;
margin-top: -120px;
z-index: 500;
}
.bottom {
This basically works in Chrome and Firefox, but not IE8. In IE8, the footer seems to always be on top of the header, and the top of the page just sits on top of the header.
Can anyone please help me figure out what's going on?
A:
Changing the positioning of your elements a bit might help you:
.header {
width: 100%;
height: 90px;
border: 1px solid red;
.page {
position: relative;
background: red;
height: 100%;
position:
Related links:
Comments