up vote 7 down vote favorite
3
share [g+] share [fb]

For fun I am trying to see how far I can get at implementing an SVG browser client for a RIA I'm messing around with in my spare time.

But have hit what appears to be a HUGE stumbling block. There is no word wrap!!

Does anyone know of any work around (I'm thinking some kind of JavaScript or special tag I don't know)?

If not I'm either going to have to go the xhtml route and start sticking HTML elements in my SVG (ouch), or just come back again in ten years when SVG 1.2 is ready.

link|improve this question

62% accept rate
feedback

5 Answers

up vote 5 down vote accepted

Per this document, it appears that tspan can give the illusion of word wrap:

The tspan tag is identical to the text tag but can be nested inside text tags and inside itself. Coupled with the 'dy' attribute this allows the illusion of word wrap in SVG 1.1. Note that 'dy' is relative to the last glyph (character) drawn.

link|improve this answer
1  
David, thanks for your response. I saw TSPAN, and also found a script here to take care of things dynamically - xml.com/pub/a/2002/09/11/quint.html – ChrisInCambo Jan 24 '09 at 10:00
feedback

There is also foreignObject tag. Then you can embed HTML in SVG which gives the greatest flexibility. HTML is great for document layout and has been hacked to no end to support application layout, drawing, and everything us developers want. But it's strength is word wrapping and document layout. Let HTML do what it does best, and let SVG do what it does best.

http://www.w3.org/TR/SVG/extend.html

This works for most browsers FireFox, Opera, Webkit, except IE9. :-( Story of the web ain't it?

http://schmerg.com/svg-support-in-ie9-close-but-should-try-harde

link|improve this answer
feedback

SVGT 1.2 introduces the textArea element http://www.w3.org/TR/SVGTiny12/text.html#TextInAnArea , but it is only experimentally supported by Opera 10 at the moment. I don't know if other browsers will ever plan on implementing it, though I hope they will.

link|improve this answer
feedback

An alternative method is to use Andreas Neuman's text box object.

link|improve this answer
feedback

These days, flowPara can do word wrapping, but I have yet to find a browser that supports it properly.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.