Page is a not externally linkable
Paul_o_b - 3:00 pm on Aug 7, 2012 (gmt 0)
Hi,
If I understand what you want then it's not possible to make the div adjust exactly to the size of the wrapped text. The text pushed the div to the limit and although one word has wrapped the space will not collapse where the wrapped word came from.
If the space did collapse then I guess the browsers would have to recalculate every line width again as subsequent words may not then fit in the reduced space and so on, so I guess its not feasible to do.
You could just use text-align:justify and then it will always look as though it is even at the edges.
div.medusa-tooltip {
text-align:justify;
}