On the form, I have one select and two input fields. These elements are vertically aligned. Unfortunately, I can\'t get equal width of these elements.
Here\'s my co
Add this code in css:
select, input[type="text"]{ width:100%; box-sizing:border-box; }