SVG Word Wrap - Show stopper? - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T17:44:16Zhttp://stackoverflow.com/feeds/question/475804http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/475804/svg-word-wrap-show-stopper3SVG Word Wrap - Show stopper?ChrisInCambo2009-01-24T09:44:36Z2009-02-18T14:28:39Z
<p>Hi,</p>
<p>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.</p>
<p>But have hit what appears to be a HUGE stumbling block. There is no word wrap!!</p>
<p>Does anyone know of any work around (I'm thinking some kind of JavaScript or special tag I don't know)?</p>
<p>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.</p>
<p>Cheers,</p>
<p>Chris</p>
http://stackoverflow.com/questions/475804/svg-word-wrap-show-stopper/475813#4758133Answer by David Segonds for SVG Word Wrap - Show stopper?David Segonds2009-01-24T09:52:42Z2009-01-24T09:52:42Z<p>Per this <a href="http://apike.ca/prog_svg_text.html" rel="nofollow">document</a>, it appears that <b>tspan</b> can give the illusion of word wrap:</p>
<blockquote>
<p>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.</p>
</blockquote>
http://stackoverflow.com/questions/475804/svg-word-wrap-show-stopper/489248#4892480Answer by eft for SVG Word Wrap - Show stopper?eft2009-01-28T20:43:54Z2009-01-28T20:43:54Z<p>An alternative method is to use Andreas Neuman's <a href="http://www.carto.net/papers/svg/gui/textbox/" rel="nofollow">text box</a> object.</p>
http://stackoverflow.com/questions/475804/svg-word-wrap-show-stopper/561263#5612631Answer by codedread for SVG Word Wrap - Show stopper?codedread2009-02-18T14:28:39Z2009-02-18T14:28:39Z<p>SVGT 1.2 introduces the textArea element <a href="http://www.w3.org/TR/SVGTiny12/text.html#TextInAnArea" rel="nofollow">http://www.w3.org/TR/SVGTiny12/text.html#TextInAnArea</a> , 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.</p>