使用 CSS 设置左侧工具提示

ID:13405 / 打印

使用 css 设置左侧工具提示

要设置左侧工具提示,请使用right CSS属性。

您可以尝试运行以下代码来将左侧工具提示设置为文本:

示例

实时演示

<!DOCTYPE html> <html>    <style>       .mytooltip .mytext {          visibility: hidden;          width: 140px;          background-color: orange;          color: white;          z-index: 1;          top: -6px;          right: 100%;          text-align: center;          border-radius: 6px;          padding: 5px 0;          position: absolute;       }       .mytooltip {          position: relative;          display: inline-block;          margin-left: 150px;       }       .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 为文本添加下划线、上划线和删除线?
下一篇: 如何用CSS选择属性值包含指定单词的元素?

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

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

与本文相关文章

发表评论:

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