首頁 >web前端 >css教學 >使用 CSS 建立工具提示

使用 CSS 建立工具提示

王林
王林轉載
2023-08-27 22:37:02604瀏覽

使用 CSS 创建工具提示

當使用者將滑鼠遊標移到文字上時,工具提示可見。您可以在其中添加資訊以方便用戶理解。

範例

您可以嘗試執行以下程式碼來了解如何建立工具提示 -

#現場示範
<!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中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除