<!DOCTYPE html> <html> <head> <style> div{ width:100px; height:100px; border:1px solid red; } div p{ display:none; } div:hover p{ display:block; } </style> </head> <body> <div> <p>web4college</p> </div> </body> </html>
Run
×
Share