Short version
I want to position text inside an element (fixed width) in such a way, that if it is short enough, it will be centered, but if it's too long to fit, it will be left-aligned, and the end of the text will be cut off (via overflow: none). In this case there will be a tooltip (via title="") with the full text. How can I do it?
Complete version
The element I'm referring to is a title beneath a picture. Since there are many pictures side-by-side, I don't want the titles to overlap or anything (they are absolutely positioned beneath the picture with fixed width and height). For a title it will look better if it's centered, but a lengthy string with overflow:none that gets both ends cut off because of centering will look bad. Currently I have this:
<div class="ImageTitle">
<table style="margin: auto">
<tr><td title="The title">The title</td></tr>
</table>
</div>
This is hackish to say the least, but I can't seem to get it working with simple DIVs and SPANs. Any ideas?