Bab 5. CSS (E. Bagian-Bagian CSS)

E. Bagian-Bagian CSS

CSS memiliki beberapa bagian penting.

1. Selector

Digunakan untuk memilih elemen HTML.

Contoh:

h1 {
color: blue;
}

2. Property

Property adalah atribut yang akan diubah.

Contoh:

color: blue;

color adalah property.

3. Value

Value adalah nilai dari property.

Contoh:

color: blue;

blue adalah value.

4. Declaration

Gabungan property dan value.

Contoh:

color: blue;

5. Declaration Block

Kumpulan declaration di dalam {}.

Contoh:

h1 {
color: blue;
font-size: 20px;
}

Scroll to Top