(https://i.stack.imgur.com/G9OiS.png)
I can not get rid of this space between the wave image and the skills
<div>
element. Tried everything in my knowlege but can't seem to be able to remove it. Can't detect the error.
The html code is:
<img class="wave-img" src="images/background-curve.png">
<div class="skills" id="skills">
<h1 class="skills-title">Skills</h1>
<ul class="skills-list">
<li class="skills-item-1 skills-item">
HTML5
</li>
</ul>
<br><br><br><br><br>
</div>
CSS:
.wave-img {
padding: 0;
margin: 0em;
margin-top: 4em;
}
img {
height: 100%;
width: 100%;
align-self: center;
padding-top: 1em;
}
img {
overflow-clip-margin: content-box;
overflow: clip;
}
.skills {
margin: 0em;
background-color: var(--purple);
position: relative;
height: 100vh;
}
div {
padding: 1em 4em 3em 4em;
}
div {
display: block;
}
I have ensured that image's margin is 0 and so is tag's. On inspecting none of the two elements are taking up that space in terms of margin/padding. Hovering over that portion selects the entire body on inspecting. I am expecting to find the cause behind this space. Where is it coming from?