Piers Chalmers
Piers Chalmers

Reputation: 35

Allow dropdown content to stay outside of nav bar

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

Answers (1)

jhpratt
jhpratt

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

Related Questions