class en id
class
/* voor elk element met class-atribuut waarvan waarde 'note' is */
.note {
/* ... */
}
/* voor <p>-element met class-atribuut waarvan waarde 'note' is */
p.note {
/* ... */
}id-selector
/* voor elk element met id-atribuut waarvan waarde 'introduction' is */
#introduction {
/* ... */
}Last updated