css 工具提示Css

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css 工具提示Css相关的知识,希望对你有一定的参考价值。

/*
adjacent sibling selector (is the tilda "~")
it selects any element that comes after the selected item.
ex:
      label.tooltip input:checked ~ span {displa:block;}

So the span that appears after the checked input item is what is selected
*/

/* html */
<label class="tooltip">football
<input type="checkbox">
<span>some content for mlate alda ;ef sdfa;ljfa;fdkjf dsal;jmore content</span>
</label>

/* css */
label.tooltip {
   postion:relative;
   border-bottom:2px dotted #980156;
   color:#980156;
   cursor:help;
}

label.tooltip span {
   width:120px;
   font-size:.9em;
   line-height:1.2em;
   background-color:#630c3c;
   color:#fff;
   text-align:center;
   padding:8px 20px;
   border-radius:20px;
   display:none;
   position:absolute;
   bottom:90%;
   left: -30px;
}

label.tooltip input:checked ~ span {
   display:block;
}

label.tooltip input {display:none;}  //input box is there by is hidden to users


以上是关于css 工具提示Css的主要内容,如果未能解决你的问题,请参考以下文章

CSS 工具提示CSS

CSS CSS工具提示

CSS css工具提示

如何将自定义 css 工具提示添加到 extjs 列标题?

CSS 提示工具(Tooltip)

CSS 提示工具(Tooltip)