I have a webpage with a banner image at the top. It contains the browser default styles with padding and margins creating white space around the sides. I've set the padding and margin to 0px in both the body and * selectors but the white space remains.
I've added a link to the normalize.css sheet here, but still have white spaces. What else can I do to get rid of the white space?
<body>
<div class = 'main-header'>
<img src='http://imageserver.amlaw.com/publications/LAW-14-05656_header.jpg'>
</div>
</body>
and the css is:
* {
margin: 0;
padding:0;
border=0;
}