I can't seem to remove the white space between the parent and child div.
It seems that this white line is not visible on all devices/browsers. The bug appears mostly on mobile
All sizes are specified in pixels so it doesn't seem to be half a pixel that is causing the bug.
.parent {
border: 2px solid;
border-color: rgb(0, 0, 0);
height: 80px;
}
.child {
height: 80px;
background-color: rgb(0, 0, 0);
}
<div class="parent">
<div class="child"></div>
</div>
