|
Posted by jojo on 10/13/06 16:55
Jason wrote:
> I have a div box with a border, and some padding left and right. It has
> some text with different font sizes, and a few icons. I want to cut off
> any overflow at the end of the line with "...", instead of the text
> wrapping. What is the best way I can detect whether the line wrapped,
> and how many characters to cut off at the end?
You can use CSS for that:
overflow:hidden; (Hides the overflow)
text-overflow:ellipsis; (Displays "...")
white-space:nowrap; (Prevents the text from line-breaking. Don't know
wether it's neccessary or not)
I do not know wich browsers support "text-overflow" and I'm to lazy to
search for it at the moment. Just try it out or search for yourself.
HTH, jojo
Navigation:
[Reply to this message]
|