html - How to control abbr tag timing? -
how command abbr tag can not alter title time, when message in title appears? need utilize php or js so?
you might wanna utilize this
class="snippet-code-css lang-css prettyprint-override">abbr { position: absolute; opacity: 0; bottom:-20px; left:0; transition:0.5s opacity; /* here delay */ transition-delay:0.5s; } .text { position:relative; cursor:help; } .text:hover abbr { opacity:1; }
class="snippet-code-html lang-html prettyprint-override"><span class="text"> text abbrevation <abbr>this abbrevation</abbr></span>
html css abbr
No comments:
Post a Comment