如何控制abbr标签时间?

时间:2014-11-09 01:16:21

标签: html css abbr

如何控制abbr标签,这样我不仅可以更改标题,还可以在标题中的消息出现时更改时间?我需要使用php或js吗?

1 个答案:

答案 0 :(得分:0)

你可能想要使用这样的东西

abbr {
  position: absolute;
  opacity: 0;
  bottom:-20px;
  left:0;
  transition:0.5s opacity;
  /* Here is the delay */
  transition-delay:0.5s;
}
.text {
  position:relative;
  cursor:help;
}
.text:hover abbr {
  opacity:1;
}
<span class="text"> This is a text with abbrevation <abbr>This is the abbrevation</abbr></span>

相关问题