html - Tooltip alignment -


how can change css so, tooltip shows right left? opposite of now.

http://jsfiddle.net/q55c8/

thank you!

write :

.tooltip span.info {     display:none;     position: absolute;     white-space:nowrap;     border-radius: 5px 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px;     box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);     -webkit-box-shadow: 5px 5px rgba(0, 0,0, 0.1);     -moz-box-shadow: 5px 5px rgba(0, 0, 0, 0.1);     font-family: calibri, tahoma, geneva, sans-serif;     margin-left: 0;     z-index: 1;     top:20px;     right:0; } 

check http://jsfiddle.net/sandeep/q55c8/5/


Comments

Popular posts from this blog

objective c - Change font of selected text in UITextView -

php - Accessing POST data in Facebook cavas app -

c# - Getting control value when switching a view as part of a multiview -