Skip to main content

crowdmarketing Forums Coding CSS CSS Selectors

Etiquetado: 

Viendo 1 publicación (de un total de 1)
  • Autor
    Publicaciones
  • #214
    crowdmarketing Staff
    Superadministrador

    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;
    }
    

Viendo 1 publicación (de un total de 1)
  • Debes estar registrado para responder a este debate.