<!DOCTYPE html> <html> <head> <style> div{ width:200px; height:200px; transition-property:background-color; background-color:red; } div:hover{ background-color:green; } </style> </head> <body> <div></div> </body> </html>
Run
×
Share