Q695 Posted February 23, 2009 Share Posted February 23, 2009 How would I make this slide down the page while scrolling around on the page? <div><a href="#"><h3>To Top</h3></a></div> Quote Link to comment Share on other sites More sharing options...
jackpf Posted February 23, 2009 Share Posted February 23, 2009 Well, you could set it as - bottom: 0; position: fixed; That would stay in the same place when scrolling and stuff Quote Link to comment Share on other sites More sharing options...
Goafer Posted February 23, 2009 Share Posted February 23, 2009 could be wrong but i think it's position: static rather than postion:fixed ?? not sure though Quote Link to comment Share on other sites More sharing options...
jackpf Posted February 23, 2009 Share Posted February 23, 2009 Probably- I can't remember tbh. I never really use it. I don't think it's supported in many old browsers either... Personally, I'd just set it to be at the bottom of the page. Quote Link to comment Share on other sites More sharing options...
Q695 Posted February 23, 2009 Author Share Posted February 23, 2009 Thanks Jack, this worked: <div style="bottom: 0; position: fixed;"><a href="#"><h3>To Top</h3></a></div> Quote Link to comment Share on other sites More sharing options...
jackpf Posted February 23, 2009 Share Posted February 23, 2009 No problem. Quote Link to comment Share on other sites More sharing options...
haku Posted February 24, 2009 Share Posted February 24, 2009 Static position is the default for all elements on a page. That means they are always in the same place relative to the other elements. That's where the 'static' comes from. 'Fixed' means that the position is fixed in place on the screen, regardless of where the other elements are. Quote Link to comment Share on other sites More sharing options...
Q695 Posted February 24, 2009 Author Share Posted February 24, 2009 Haku, thanks for the explanation, but I think I'll always be applying this to the pages now. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.