Why are the widths of these HTML elements uneven?
I created some div elements and gave them the same width of 5px. This is my CSS code: div { background-color: black; width: 5px; height: 100px; display: inline-block; } I was expecting all the divs to look the same, but…