<!DOCTYPE html> <html> <head> <style> div{ transition-property:background-color; -webkit-transition-property:background-color; /* for safari */ transition-duration:2s; -webkit-transition-duration:2s; /* for safari */ background-color:red; } div:hover{ background-color:blue; } </style> </head> <body> <div> <p>The position, opacity and color of the text change on hover.</p> </div> </body> </html>
Run
×
Share