html - Css: Mysterious margin -
does know why mysterious margin is? this link site
i have tried everything! turning margins off , on , playing padding cant find problem why horizontal slider bar appear?
thanks help!
you have pretty significant typo in your css:
body{ marign: 0px; background-color: #e6e6e6; width: 100%; height: 100%; }
margin spelled incorrectly.
to eliminate odd margins arise, suggest adding code:
body { margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; }
usually pretty safe bet eliminates unnecessary margins, , fixes problem. have margins on place, post it's hard us understand which margins trying eliminate.
Comments
Post a Comment