Position of footer can't fixed

neel

http://jsfiddle.net/L9tqk/2/

i cant place my footer in correct place

<div id="logo"></div>
<div id="content">
    <div id="trans">
    <div id="data">
        <div id="left"> </div>
        <div id="right"> </div>
    </div>
 </div>
 <div id="footer"></div>


#footer {
 position:relative;
 width:100%;
 clear:both; 
}

when give

 bottom:0;

to #footer normal window it placed correctly, but when window size is changed, the footer position is not correct.

Mohsen Safari

remove position:absolute; from #content #trans and set float to it:

DEMO

#content #trans {
    background: rgba(0,0,0,0.3);
    width:100%;
    height:auto;
    float:left;
    border-radius:5px;
    color:Red;
   }

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Position of footer can't fixed

From Dev

section position: fixed overlaps footer

From Dev

Position fixed till before footer

From Dev

position:fixed footer in iPhone iOS

From Dev

position fixed element is overlapping into footer

From Dev

Can't center text in a fixed position column

From Dev

can't float inside div with position fixed

From Dev

CSS position:fixed is working for the header but not for the footer

From Dev

Aside navigation height to footer, not in fixed position

From Dev

Aside navigation height to footer, not in fixed position

From Dev

Position: Fixed - pushing my footer over header

From Dev

How can position the bottom footer?

From Dev

Can't click fixed position element on mobile safari

From Dev

div with position:fixed and 100% height can't scroll

From Dev

Can't click fixed position element on mobile safari

From Dev

div with position:fixed and 100% height can't scroll

From Dev

I can't keep the footer fixed to the bottom of screen when zoomed out

From Dev

Stop header footer from loosing position:fixed with click - Jquery Mobile

From Dev

Sticky footer on fixed position sidebar, want css solution

From Dev

Brightness can't be fixed

From Dev

Brightness can't be fixed

From Dev

How can i get the fixed position in the window?

From Dev

Child of position: fixed; won't scroll

From Dev

Position Fixed doesn't work in Chrome

From Dev

Position Fixed doesn't work in Chrome

From Dev

Burger navbar doesn't work with fixed position

From Dev

If I use "position:fixed;" can I have the position be on the right?

From Dev

Position fixed doesn't work inside relative position, CSS

From Dev

Can't Center Fixed Div

Related Related

HotTag

Archive