El atributo de ancho de marquesina en HTML se usa para establecer el ancho de la marquesina en píxeles o valor porcentual. Nota: este atributo no es compatible con HTML5.
Sintaxis:
<marquee width="px/%" >
Valor de atributo:
- px: define el valor de ancho de la marquesina.
- %: define el valor de ancho de la marquesina.
Ejemplo:
html
<!DOCTYPE html> <html> <head> <title>HTML | Marquee width attribute </title> <style> .main { text-align: center; } </style> </head> <body> <h1 style="color:green; text-align:center;"> GeeksforGeeks </h1> <div class="main"> <marquee width=25px bgcolor="Green" direction="left" loop=""> Left </marquee> <br> <marquee width=50px bgcolor="Green" direction="right" loop=""> Right </marquee> <br> <marquee width=75px bgcolor="Green" direction="left" loop=""> Left </marquee> <br> <marquee width=100px bgcolor="Green" direction="right" loop=""> Right </marquee> <br> <marquee width=125px bgcolor="Green" direction="left" loop=""> Left </marquee> <br> <marquee width=150px bgcolor="Green" direction="right" loop=""> Right </marquee> </div> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con el atributo de ancho HTML Marquee se enumeran a continuación:
- Google Chrome
- explorador de Internet
- Firefox
- safari de manzana
- Ópera
Publicación traducida automáticamente
Artículo escrito por Vijay Sirra y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA