I have a div on a page with the background colour set to grey. How do I get rid of the white border around the div, so that the white edges are also grey in colour?
e.g. HTML:
<div id="top-div">
<h1>Some Header</h1>
<p>
Some text.
</p>
</div>
CSS:
#top-div {
background-color: #808080;
}
Current graphical output:
Desired graphical output: