Tooltip with a triangle [duplicate]
You can do it with CSS, by using the css triangle trick a.tip span:before{ content:”; display:block; width:0; height:0; position:absolute; border-top: 8px solid transparent; border-bottom: 8px solid transparent; border-right:8px solid black; left:-8px; top:7px; } Demo at http://jsfiddle.net/dAutM/7/ live snippet a.tip { position: relative; } a.tip span { display: none; position: absolute; top: -5px; left: 60px; width: … Read more