Example: https://jsfiddle.net/u2p7fbkm/
HTML:
<div id="alt-color">
<p> First</p>
</div>
<div id="main-color">
<h2>Second</h2>
</div>
CSS:
#alt-color {
background-color: rgba(0, 0, 255, 1);
}
#main-color {
background-color: rgba(255, 0, 0, 1);
}
How can I remove the whitespace between the divs (first and Second) in the example? Basically I want something like this: