Sehen Sie sich “Section 7 Topic 74” an.
Der CSS-Attributselektor gleicht Elemente basierend auf dem Vorhandensein oder Wert eines bestimmten Attributs ab.Das folgende Beispiel wählt alle <input> -Elemente mit einem Texttyp aus:
<input type="text" placeholder="Username">
input[type="text"] { width: 300px; background-color: rgb(159, 158, 252); } input[type="text"]::placeholder { color: aliceblue; }
Benutzername oder E-Mail-Adresse
Passwort
Angemeldet bleiben