Ver ❯
Herramientas SEO
Tamaño del resultado:
668 x 574
×
Cambiar Orientacion
Cambiar tema, Oscuro/Luz
<!doctype html> <html lang="es"> <head> <meta charset="utf-8"> <title>Animaciones básicas con CSS transition</title> </head> <body> <style> .transition { width: 100px; height: 100px; background: #f92672; transition: width 2s, height 2s, margin 2s; margin: 50px auto 0; } .transition:hover{ width: 100%; height: 200px; margin: 0 auto; } </style> <div class="transition"></div> </body> </html>