It may not have been possible many years ago, but now yes, you can style the Title attribute, see here . This should work in IE7 +, Safari 3+, Firefox 2.0.0+.
Some individual styles and layouts may be required to fit your own design.
Just to make sure this link doesn't work, the code in this article is suggested for styling the title attribute:
<div title="Tooltip text for first div"></div> <div title="Tooltip text for second div"></div> div:before{ content:attr(title); display:none; } div:hover::before{ width:200px; display:block; background:yellow; border:1px solid black; padding:8px; margin:25px 0 0 10px; } div:hover{ z-index:10; position:relative; }
source share