主頁
CSS
CSS 偽類
Tryit: 簡單的工具提示懸停
執行 ❯
建立您
自己的
網站
×
改變方向
儲存程式碼
更換主題,深色/淺色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> p { display: none; background-color: yellow; padding: 20px; } div:hover p { display: block; } </style> </head> <body> <div>Hover over this div element to show the p element <p>Tada! Here I am!</p> </div> </body> </html>