6.6 ➡️Attribute Selector

Sehen Sie sich “Section 7 Topic 74” an.

Was ich in diesem Video lernen kann:

Attribute Selector:

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:

HTML:

<input type="text" placeholder="Username">
HTML

CSS:

input[type="text"] {
    width: 300px;
    
    background-color: rgb(159, 158, 252);
  }

input[type="text"]::placeholder {
    color: aliceblue;
}
CSS

Result: