I'm working on a website, I'm trying to integrate a little addon.
I have a problem that i already faced but i forgot how to resolve it.
this is the site : http://www.journaldunet.com/solutions/mobilite/ios-9.shtml
Basically, when you add a margin-top to the elements inside the body, this margin-top is applied also to the body. I have actually no idea how to fix it.
The site is responsive so I can't do a because it's won't be responsive anymore
#mydiv{
position:absolute;
width:1000px;
margin:auto;
}
Do someone have an idea?
EDIT : Found the solution. overflow isn't working, so i had to do a little trick (which in this case works). It's not clean, but it do the trick.
body{
padding-top:1px;
margin-top:-1px;
}
thx