移动浏览器的工具提示

时间:2012-09-21 17:45:51

标签: html css html5 css3 mobile

  

可能重复:
  Tooltips for mobile browsers

也许这更像是一个UX问题而不是CSS问题。如果我想提供更多信息,我目前设置了某些HTML的title属性:

<p>An <span class="more_info" title="also called an underscore">underline</span> character is used here</p>

然后在CSS中:

.more_info {
  border-bottom: 1px dotted;
}

工作非常好,可视指示器移动鼠标,然后弹出更多信息。但是在移动浏览器上,我没有得到那个工具提示。 title属性似乎没有效果。在移动浏览器中提供有关文本的更多信息的正确方法是什么?与上面相同,但使用Javascript来监听点击,然后显示工具提示的对话框?

0 个答案:

没有答案