El selector #id se usa para establecer el estilo de la identificación dada. El atributo id es el identificador único en el documento HTML. El selector de ID se utiliza con el carácter #.
Sintaxis:
#id { // CSS property }
Ejemplo:
html
<!DOCTYPE html> <html> <head> <title>#id selector</title> <!-- CSS property using id attribute --> <style> #gfg1 { color:green; text-align:center; } #gfg2 { text-align:center; } </style> </head> <body> <!-- id attribute declare here --> <h1 id = "gfg1">GeeksforGeeks</h1> <h2 id = "gfg2">#id selector</h2> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con el selector de ID se enumeran a continuación:
- Google Chrome 1 y superior
- Borde 12 y superior
- Internet Explorer 3 y superior
- Firefox 1 y superior
- Safari 1 y superior
- Ópera 3.5 y superior
Publicación traducida automáticamente
Artículo escrito por PurvaDhuri y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA