如何控制abbr标签,这样我不仅可以更改标题,还可以在标题中的消息出现时更改时间?我需要使用php或js吗?
答案 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>