Ja. Und tooltip[label] sollte die richtige Syntax sein. Funktioniert hier bloß nicht. Hier ein Screenshot mit einem Text ohne Leerzeichen:

Das geht:
CSS
tooltip[label*=" "] {
appearance: none !important;
background-color: #3f3f3f !important;
color: #F9F9F9 !important;
font-size: 12px !important;
line-height: unset !important;
border: 1px solid #b03b0099 !important;
border-radius: 4px !important;
box-shadow: none !important;
width: auto !important;
height: auto !important;
justify-content: center !important;
align-items: center !important;
align-content: center !important;
vertical-align: middle !important;
overflow: hidden !important;
padding: 3px 7px 5px 7px !important;
}
Alles anzeigen
Das nicht:
CSS
tooltip[label] {
appearance: none !important;
background-color: #3f3f3f !important;
color: #F9F9F9 !important;
font-size: 12px !important;
line-height: unset !important;
border: 1px solid #b03b0099 !important;
border-radius: 4px !important;
box-shadow: none !important;
width: auto !important;
height: auto !important;
justify-content: center !important;
align-items: center !important;
align-content: center !important;
vertical-align: middle !important;
overflow: hidden !important;
padding: 3px 7px 5px 7px !important;
}
Alles anzeigen
Finde den Fehler.