We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
<html> <head> <title>view with inline styles</title> <style type="text/css"> input[type="text"], textarea, input[type="password"] { border-color: #B4B4B4 #DDD #DDD; border-style: solid; border-width: 1px; -webkit-border-radius: 2px; -khtml-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px; } </style> </head> <body> <div id="a"> <ul><li><label for="password">Kata Sandi</label><input type="password" autocomplete="off" id="input-password" class="t" data-error="Password Anda tidak diperbolehkan kosong" name="password"><p id="red-register-information">"Kata Sandi Yang Kuat"</p></li> </ul> </div> </body> </html>
turns out to be like
<html> <head> <title>view with inline styles</title> <style type="text/css"> input[type="text"], textarea, input[type="password"] { border-color: #B4B4B4 #a #DDD; border-style: solid; border-width: 1px; -webkit-border-radius: 2px; -khtml-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px; } </style> </head> <body> <div id="a"> <ul><li><label for="password">Kata Sandi</label><input type="password" autocomplete="off" id="input-password" class="t" data-error="Password Anda tidak diperbolehkan kosong" name="password"><p id="red-register-information">"Kata Sandi Yang Kuat"</p></li> </ul> </div> </body> </html>
#a should be #DDD or something, it breaks the color.
#a
The text was updated successfully, but these errors were encountered:
+1 have this problem too
Sorry, something went wrong.
No branches or pull requests
turns out to be like
#a
should be #DDD or something, it breaks the color.The text was updated successfully, but these errors were encountered: