CSS | elemento,selector de elemento

El elemento, el selector de elementos en CSS se usa para diseñar todos los elementos separados por comas con el mismo estilo.

Sintaxis:

element, element {
    // CSS Property
}

Ejemplo 1:

<!DOCTYPE html>
<html>
    <head>
        <title>
            element, element Selector
        </title>
          
        <style>
          
            /* Add same CSS property to all comma 
            separated elements */
            h1, h2, div, p {
                text-align: center;
            }
              
            div, p {
                background-color: green;
                color: white;
            }
        </style>
    </head>
      
    <body>
        <h1 style = "color: green;">
            GeeksforGeeks
        </h1>
          
        <h2>element, element Selector</h2>
          
        <div>
            A computer science portal for geeks.
        </div>
        <p>Welcome to geeks classes.</p>
    </body>
</html>                    

Producción:
elemento-elemento

Ejemplo 2:

<!DOCTYPE html>
<html>
    <head>
        <title>
            element, element Selector
        </title>
          
        <style>
          
            /* Add same CSS property to all comma 
            separated elements */
            h1, h2, p {
                text-align: center;
            }
            ul, p {
                background-color: green;
                color: white;
            }
        </style>
    </head>
      
    <body>
        <h1 style = "color: green;">
            GeeksforGeeks
        </h1>
        <h2>element, element Selector</h2>
        <p>Welcome to geeks classes.</p>
          
        <div>Different algorithm techniques:</div>
        <ul>
            <li>Searching Algorithms</li>
            <li>Sorting Algorithms</li>
            <li>Graph Algorithms</li>
        </ul>
    </body>
</html>                    

Producción:
elemento-elemento2

Navegadores compatibles: el navegador compatible con el elemento, el selector de elementos se enumeran a continuación:

  • safari de manzana
  • Google Chrome
  • Firefox
  • Ópera
  • explorador de Internet

Publicación traducida automáticamente

Artículo escrito por Vishal Chaudhary 2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *