<!DOCTYPE html> <html> <head> <style> div{ width:100px; height:100px; border:1px solid black; color:red; transition:color 3s; -webkit-transition:color 3s; } div:hover{ color:green; } </style> </head> <body> <div>web4college</div> </body> </html>
Run
×
Share