1

I'm trying to make a fairly simple website and so far all I have is the top title bar. For some reason, there is a small margin on the left side. Any idea why and how to fix it?

The website on internet explorer

.headbar {
  background-color: #117FF2;
  position: fixed;
  top: 0;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
<div class='headbar'>
  <h1> Title </h1>
</div>
tacoshy
  • 10,642
  • 5
  • 17
  • 34

1 Answers1

3

I think it's probably caused by the default margin of the body element.

Try this:

body {
  margin: 0;
}
Youssouf Oumar
  • 29,373
  • 11
  • 46
  • 65
Bryce Chan
  • 1,639
  • 11
  • 26