CSS alignment
CSS alignment
- Started
- Last post
- 6 Responses
- nosaj
Any suggestions as to how I can get a div to snap to the bottom of a page? I want a page footer to sit at the bottom of the browser no matter what the resolution is set to.
- ********0
i'm having that problem with IE. this works in FF though.
...
position: fixed;
left: 0px;
bottom: 0px;
width: 100%;
...
- billl0
try this:
http://www.alistapart.com/articl…
- cx3news0
let me know when you find out. I've always used a table at 100% height. Everything else inside the table would be div's.
- myobie0
IE doesn't do position:fixed correctly, so you gotta fudge it (like that article).
I would just write a css expression for it and include that css file with conditional comments.
- nosaj0
Thanks folks... Great link Billl - this seems to do the trick so far:
http://www.alistapart.com/d/foot…