<!DOCTYPE html> <html> <head> <style> div{ width:100px; height:100px; background-color:red; transition:transform 2s; -webkit-transition:transform 2s; /* for safari */ transform:translate(0px, 0px); } div:hover{ transform:translate(100px, 100px); } </style> </head> <body> <div>web4college</div> </body> </html>
Run
×
Share