首頁  >  文章  >  web前端  >  如何使用 CSS 正確定位工具提示

如何使用 CSS 正確定位工具提示

PHPz
PHPz轉載
2023-08-29 14:49:021006瀏覽

如何使用 CSS 正确定位工具提示

要正確定位工具提示,請使用 right、left、top 和 Bottom 屬性。

讓我們看看如何將工具提示定位在右側:

範例

現場示範

<!DOCTYPE html>
<html>
   <style>
      .mytooltip .mytext {
         visibility: hidden;
         width: 140px;
         background-color: blue;
         color: #fff;
         z-index: 1;
         top: -6px;
         left: 100%;
         text-align: center;
         border-radius: 6px;
         padding: 5px 0;
         position: absolute;
      }
      .mytooltip {
         position: relative;
         display: inline-block;
      }
      .mytooltip:hover .mytext {
          visibility: visible;
      }
   </style>
   <body>
      <div class = "mytooltip">Keep mouse cursor over me
         <span class = "mytext"> My Tooltip text</span>
      </div>
   </body>
</html>

以上是如何使用 CSS 正確定位工具提示的詳細內容。更多資訊請關注PHP中文網其他相關文章!

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