The “select” and “button” elements looks less in height than other elements, though I used same “fixed-height” class for all of them. How can I make them look similar in height?
Please write if you have any more suggestion. Thanks.
you can apply box-sizing: border-box to those elements. This way height/width you apply will include padding and border in it
Its common practice to apply it to all elements on top of CSS.