I mean, these two boxes are not aligned horizontally because the labels are not the same size, i want the smaller label to justify to the right, so the boxes could be alingned
https://i.stack.imgur.com/H5FOA.pngstrong[CSS][1]
>Solution :
One of the simplest ways to achieve this is with the margin-left CSS property, so select your lower element by Id, and play with the margin property:
#second_box_id {
margin-left: 30px;
}