首页 > web前端 > css教程 > 如何使用 CSS 正确定位工具提示

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

PHPz
发布: 2023-08-29 14:49:02
转载
1061 人浏览过

如何使用 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
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板