El atributo de color HTML <hr> se utiliza para especificar el color de una regla horizontal. No es compatible con HTML 5.
Sintaxis:
<Hr color= "color_name | hex_number | rgb_number">
Valores de atributos:
- color_name: Establece el color del Texto usando el nombre del color. Por ejemplo, «rojo».
- hex_number: Establece el color del texto usando el código hexadecimal del color. Por ejemplo, “#0000ff”.
- rgb_number: Establece el color del texto usando el código rgb. Por ejemplo: “RGB(0, 153, 0)”.
Ejemplo:
html
<!DOCTYPE html> <html> <head> <title> HTML hr color Attribute </title> </head> <body style="text-align:center;"> <h1>GeeksforGeeks</h1> <h2> Hr color attribute</h2> <hr width="500px;" color="red" size="10"> <p>Computer science portal</p> <hr width="70%" size="20" color="blue" noshade> </body> </html>
Producción
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA