html - Custom IE8 tooltip for title="tooltip description" -
there possibility use css in order style title="title description" on ie8? without use jquery? like:
html
<a href="#" title="tooltip description">this must toltip</a>
css
a[title]:hover{ background: lime; border:1px solid #eaeaea; opacity: .6; position: absolute; }
no, title popup managed browser. content isn't interpreted html , can't style it.
if want styled popup, have generate using javascript. in related question show how can (here jquery can adapt vanilla js).
Comments
Post a Comment