-3

I'm creating a 'blog' page on Dash (learning with General Assembly), and there's some white space at the top of the page that I can't seem to get rid of? This is the code I've used for the header:

 header {
      text-align: center;
      background: linear-gradient(#f9eeaa, #f9d6aa);
      background-size: cover;
      color: #f78;
    }

Does anyone have any suggestions on how to fix this?

1

David Buck
  • 3,752
  • 35
  • 31
  • 35

2 Answers2

0

Based on the information that you provided I would recomend the following css attributes.

 *{margin:0;padding:0;} body {margin: 0;} header {margin: 0; top:0;}
-1

If I understand correct than you could try to add: margin: 0;

ironixx
  • 97
  • 6