RockyLou Posted April 28, 2007 Share Posted April 28, 2007 I'm trying to position a div on the page absolutely. I got it to work pretty much except now I'm trying to center the div on the page. Here's my code so far (the other part is in css): #DivHeader { border: 1px solid #000099; background-color: $color1; padding: 4px; color: white; } <div id=DivHeader align=center style="position: absolute; top: 0px;"> I don't want to specify how far from the left or right, I just want it centered. Any ideas? Link to comment https://forums.phpfreaks.com/topic/49048-positioning-absolutely/ Share on other sites More sharing options...
AndyB Posted April 28, 2007 Share Posted April 28, 2007 margin:auto; ... forget absolute positioning, it tends to be problematic in all but the most trivial layout. And 999 times out of 1000 you don't need it if you understand floats. Link to comment https://forums.phpfreaks.com/topic/49048-positioning-absolutely/#findComment-240653 Share on other sites More sharing options...
RockyLou Posted April 29, 2007 Author Share Posted April 29, 2007 margin: auto? Well in my case I have to use absolute positioning the way I am running my scripts. Link to comment https://forums.phpfreaks.com/topic/49048-positioning-absolutely/#findComment-240911 Share on other sites More sharing options...
rh-penguin Posted April 29, 2007 Share Posted April 29, 2007 #DivHeader { border: 1px solid #000099; background-color: $color1; padding: 4px; color: white; margin:auto; } <div id=DivHeader align=center style="position: absolute; top: 0px;"> Link to comment https://forums.phpfreaks.com/topic/49048-positioning-absolutely/#findComment-241000 Share on other sites More sharing options...
RockyLou Posted May 9, 2007 Author Share Posted May 9, 2007 Thanks; it works now. Link to comment https://forums.phpfreaks.com/topic/49048-positioning-absolutely/#findComment-248746 Share on other sites More sharing options...
emehrkay Posted May 9, 2007 Share Posted May 9, 2007 myspace layout? its a hack but position: absolute; width: 400px; margin: 0 auto; padding-left: - 200px; Link to comment https://forums.phpfreaks.com/topic/49048-positioning-absolutely/#findComment-249199 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.