“CSS für deaktivierte Taste” Code-Antworten

Style Deaktivierte Schaltfläche

button:disabled,
button[disabled]{
  border: 1px solid #999999;
  background-color: #cccccc;
  color: #666666;
}
Xenophobic Xenomorph

CSS für deaktivierte Taste

/* CSS Selectors for CSS2 and CSS3 both */
button:disabled,
button[disabled]{
  border: 1px solid #999999;
  background-color: #cccccc;
  color: #666666;
}
Inquisitive Iguana

CSS deaktiviert

<input type="text" name="username" value="admin" >

<style type="text/css">
input[name=username] {
    pointer-events: none;
 }
</style>
Alive Albatross

Ähnliche Antworten wie “CSS für deaktivierte Taste”

Fragen ähnlich wie “CSS für deaktivierte Taste”

Weitere verwandte Antworten zu “CSS für deaktivierte Taste” auf CSS

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen