dave: HTML5-Formularvalidierungsfehler bei ausgeblendeten Controls anz

Beitrag lesen

Hi,

mir fällt nur clip als Lösung ein.

input[type='radio'] {  
    position: absolute;  
    width: 1px;  
    height: 18px;  
    clip: rect(18px, 9999px, 9999px, 0);  
    outline: 0;  
}  
/* Sonst im Chrome die Bubble so schmal, Firefox hat dieses Problem nicht */  
::-webkit-validation-bubble {  
    width: 250px;  
}  
input[type='radio']:checked ~ label {  
    background-color: grey;  
}

~dave