After creating four div boxes with content, I encountered an issue. Initially, when inserting filler text, everything seemed fine. However, as soon as I started adding actual content into the first box, the other three boxes shifted downwards by the same amount.
Another concern of mine is regarding the spacing of the text within the boxes. Is there a way to make the text more compact like in the other three boxes that contain filler text? I've heard something about using CSS break properties, but I'm not sure if that's the solution.
.skillcontainer {
max-width: 23%;
min-width: 200px;
display: inline-block;
position: relative;
margin-left:1.4em;
}
Here you can see the issue illustrated. Additionally, if you resize the window, you'll notice empty space below 22% width.