Hi I’m having trouble with making the “Age” field the same size as the other ones
Here is a link to my project https://codepen.io/teinted-the-bashful/pen/ZgaGRL
Hi I’m having trouble with making the “Age” field the same size as the other ones
Here is a link to my project https://codepen.io/teinted-the-bashful/pen/ZgaGRL
Try adding this in your css
input{
width: 300px;
}
This can also work
input[type="number"]{
width: 300px;
}
Yeah i did that i just wanted them to look the same the problem is even if i set it to 160px that’s the ruler measured value of the other two elements it doesn’t match just because it’s different type of “field”