i'm trying to give the same width to the text and password inputs.
So i write this:
input[type="text","password"]{
width: 138px;
}
But it doesn't work.
Any help?
Regards
Javi
How about:
input[type="text"], input[type="password"]
{
width: 138px;
}
or you use classes/ids:
input.text, input.password
{
width: 138px;
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With