html - How do I remove the grey background around my picture? -


how remove grey background around picture? here's how page looks right now: http://imgur.com/w52pfhn

.header {    text-align: center;    font-size: 50px;    font-family: sans-serif;    font-style: bold;    color: white;    background-color: white;    background-image: url("https://dummyimage.com/vga");    padding: 10%;    margin: 0%;    border: 0%;  }    body {    background-color: grey;  }
<div class="header">    <h1>hello</h1>  </div>

by default body has margin, so:

body {     margin: 0; } 

Comments

Popular posts from this blog

ubuntu - PHP script to find files of certain extensions in a directory, returns populated array when run in browser, but empty array when run from terminal -

php - How can i create a user dashboard -

javascript - How to detect toggling of the fullscreen-toolbar in jQuery Mobile? -