Reputation: 35
This is probably abominably obvious to everyone, but I am very new to HTML. How would I allow my webpage to start from the very top and very left, rather than ~10px after, while using position:relative
?
Upvotes: 1
Views: 29
Reputation: 7130
By default, browsers put an 8px margin on body
. To counter this, you'll need to add body { margin: 0; }
to your stylesheet.
Upvotes: 1