Is there a way in CSS to ensure that these input boxes are always aligned below each other, regardless of font family, size, or window movement by the user?
https://i.stack.imgur.com/Zbadh.png
Currently, I am using the following approach:
tab1 {
padding-left: 5em;
}
This method requires a lot of manual work and adjustments if the font size or type is changed. Is there a more efficient way to achieve this layout with CSS?