I am trying to give the same width for entering text and password.
So, I am writing this:
input[type="text","password"]{ width: 138px; }
But that will not work.
Any help?
Hi
Xavi
What about:
input[type="text"], input[type="password"] { width: 138px; }
or you use classes / identifiers:
input.text, input.password { width: 138px; }
What about?
input[type="text"], input[type="password"]{ width: 138px; }
input[type="text"], input[type="password"]
W3C. , . , faileN.