html-muncher icon indicating copy to clipboard operation
html-muncher copied to clipboard

#B4B4B4 #DDD #DDD; to #B4B4B4 #a #DDD;

Open adamramadhan opened this issue 12 years ago • 1 comments

<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.

adamramadhan avatar Sep 02 '11 23:09 adamramadhan

+1 have this problem too

sayjeyhi avatar Feb 13 '17 20:02 sayjeyhi