“CSS -Schaltflut entfernen” Code-Antworten

Diable Focus -Taste CSS

*:focus {
    outline: 0 !important;
}
Delightful Dunlin

CSS Blue Excurse -Taste entfernen

button {
  outline: none;
}
Helpful Hamerkop

Entfernen Sie den Umriss btn

button {
  outline: none;
}
.btn:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn:focus {
  outline: none !important;
}

.btn:focus {
  box-shadow: none;
}
Tiago F2

Deaktivieren Sie die Schaltflächenübersicht in CSS

button:focus {outline:0;}
Cooperative Chinchilla

Entfernen Sie die Gliederung auf der Schaltfläche Klicken Sie auf

using outline:none; we can remove that border in chrome

for tailwind css :
outline-none 
focus:outline-none
Lokesh003

CSS -Schaltflut entfernen

For chakra UI, use this bellow code

*:focus {
  box-shadow: none !important;
}

*[data-focus] {
  box-shadow: none !important;
}
UIFaisal

Ähnliche Antworten wie “CSS -Schaltflut entfernen”

Fragen ähnlich wie “CSS -Schaltflut entfernen”

Weitere verwandte Antworten zu “CSS -Schaltflut entfernen” auf CSS

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen