主页

tooltip 的简单使用

2023-10-20 05:20PM

<div class="tooltip">Hover over me
  <span class="tooltiptext">Tooltip text</span>
</div>

<style>
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}
</style>

打开浏览器,查看页面:

返回>>

登录

请登录后再发表评论。

评论列表:

目前还没有人发表评论