CSS Selectors

Accueil projet Forums Coding CSS CSS Selectors

Mots-clés : 

Ce sujet a 0 réponse, 1 participant et a été mis à jour par  aubriere, il y a 10 ans.

Affichage de 1 message (sur 1 au total)
  • Auteur
    Articles
  • #214

    aubriere
    Administrateur

    CSS selectors allow you to select and manipulate HTML element(s).

    CSS selectors are used to « find » (or select) HTML elements based on their id, classes, types, attributes, values of attributes and much more.

    The element Selector
    The element selector selects elements based on the element name.

    You can select all

    elements on a page like this: (all

    elements will be center-aligned, with a red text color)

    p{
    text-align:center;
    color:red;
    }
    

Affichage de 1 message (sur 1 au total)

Vous devez être connecté pour répondre à ce sujet.