0
I use the same CSS code for both the input "text" and the password, but for one it works and for the other it doesn’t:(see photo)
Code in CSS
#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact input[type="password"],
HTML code:
<fieldset>
<input placeholder="Address" type="text" tabindex="1" required autofocus>
</fieldset>
<fieldset>
<input placeholder="password" type="password" tabindex="1" required autofocus>
</fieldset>
<fieldset>
<input placeholder="Confirm password" type="password" tabindex="1" required autofocus>
</fieldset>
include the css style
– Leandro Angelo