html - Removing space at the top left and right of div -
html - Removing space at the top left and right of div -
i starting work css , have basic issue.
i have div element:
class="snippet-code-css lang-css prettyprint-override">.top { background-color: #3b5998; margin-left: 0px; margin-top: 0px }
class="snippet-code-html lang-html prettyprint-override"><div class="top">...</div>
the colour code taking effect (good).
the problem have there seems bit of white space on left, top , right of div. how rid of white space? illustration if take @ facebook page, top part blue, there no white space @ top.
you need reset both default padding , margin attributes in stylesheet:
html, body { margin: 0; padding: 0; }
as @jason mccreary mentions, should using reset stylesheet. 1 links to, eric meyer's css reset, great place start.
it looks you're missing semi-colon in css, should follows:
.top { background-color:#3b5998; margin-left:0px; margin-top:0px; }
html css
Comments
Post a Comment