您可以嘗試執行以下程式碼來建立滑鼠懸停時可見的工具提示。使用可見性屬性
現場示範
<!DOCTYPE html> <html> <style> #mytooltip #mytext { visibility: hidden; width: 100px; background-color: black; color: #fff; text-align: center; border-radius: 3px; padding: 10px 0; position: absolute; z-index: 1; } #mytooltip:hover #mytext { visibility: visible; } </style> <body> <div id = "mytooltip">Hover the mouse over me <p id = "mytext">My Tooltip text</p> </div> </body> </html>
以上是使用 CSS 建立當使用者將滑鼠移到元素上時出現的工具提示的詳細內容。更多資訊請關注PHP中文網其他相關文章!