I would like to display a <text> in SVG what would auto-line-wrap to the container <rect> the same way as HTML text fills <div> elements. Is there a way to do it? I don't want to position lines sparately by using <tspan>s.
|
feedback
|
|
Text wrapping is not part of SVG1.1, the currently implemented spec. You should rather use HTML via the
| ||||
feedback
|
|
Here's an alternative:
Noting that even though foreignObject may be reported as being supported with that featurestring, there's no guarantee that HTML can be displayed because that's not required by the SVG 1.1 specification. There is no featurestring for html-in-foreignobject support at the moment. However, it is still supported in many browsers, so it's likely to become required in the future, perhaps with a corresponding featurestring. Note that the 'textArea' element in SVG Tiny 1.2 supports all the standard svg features, e.g advanced filling etc, and that you can specify either of width or height as auto, meaning that the text can flow freely in that direction. ForeignObject acts as clipping viewport. | |||||
feedback
|
|
This functionality can also be added using JavaScript. Carto.net has an example: http://www.carto.net/svg/textFlow/ Something else that also might be useful to are you are editable text areas: | |||
|
feedback
|