PROA

Professional Academy

CSS - Selektor - tag HTML

Memilih elemen dengan tag HTML secara langsung

Contoh CSS

/* Seluruh paragraf akan menjadi biru */
p {
  color: blue;
}

/* Seluruh h1 akan berwarna merah dengan background kuning */
h1 {
  color: red;
  background-color: yellow;
}
withered-flowers (2022)