使用 CSS 创建工具提示

ID:13197 / 打印

使用 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 进行维护
下一篇: 十大 Tailwind CSS 插件

作者:admin @ 24资源网   2024-10-18

本站所有软件、源码、文章均有网友提供,如有侵权联系308410122@qq.com

与本文相关文章

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。