Im unable to remove the white space between the img and the h3. I made a codepen to show:https://codepen.io/morper/pen/RQYKpw
This is the html:
* {
margin: 0;
padding: 0;
}
body {
margin: 0;
padding: 0;
text-align: center;
}
div {
border: black solid 1px;
background-color: #0017ff;
width: 100%;
height: 100px;
}
img {
margin: 0;
padding: 0;
}
h3 {
background-color: #ff0c57;
margin: 0;
padding: 0;
}
<body>
<main>
<div>div</div>
<img src="https://images-gmi-pmc.edge-generalmills.com/e8198dd2-770b-4c7c-a748-ca7538cf48d0.jpg" alt="cookies">
<h3>H3</h3>
<p>paragraph</p>
</main>
</body>
I´ve tried to set margin and padding to 0, but that doesnt cut it.