Hello team, I put the width of 600px to all my input and buttons, but i found the submit button and dropdown select area a little bit smaller than 600px. I don’t know why. link to my project: https://codepen.io/alhoucine/pen/PoZEboX?editors=1100 Thanks
It is because the default box-sizing is content-box.
Add this to your css:
* {
box-sizing: border-box;
}
1 Like
Thank you very much Samolex, it works finally and I learned something new.
best regards
1 Like