Like has been said, it may not be practical as of yet, but if you want to experiment with it, you could use something like the below as a starting point:
Code:
#tooltip {
position: relative;
z-index: 1;
}
#tooltip span {
display: none;
background: #fff;
border-radius: 4px;
box-shadow: 0px 1px 1px 1px rgba(0, 0, 0, 0.1);
padding: 1em;
position: absolute;
z-index: 500;
left:1em;
top:2em;
}
#tooltip:target span {
display: block;
}
#tooltip #close-tooltip:target {
display: none;
}
And the HTML:
Code:
<p>
Click <a href="#tooltip">this link</a> for the tooltip to appear.
<span id="tooltip">Hello! I'm a CSS3 tooltip! <b><a id="close-tooltip" href="#">Close</a></b></span>
</p>
Bookmarks