Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
94 views

How to wrap text to fit window in XSLT

I need your help. I am extracting data from XML using XSLT 2.0. The data has long lines and I want to fit them into window size by automatically breaking lines. Is it possible in XSLT? I tried finding ...
2
votes
1answer
239 views

How do I make the new Google calendar event text wrap around using CSS?

I can't read the full title of my Google Calendar events, because they're truncated to fit in the day box. And so a printout isn't as useful as it could be. There used to be a greasemonkey plugin ...
1
vote
1answer
78 views

CSS issue with multi-accordion

Alright, I got some help earlier with this, but it never truly got resolved. I'm pretty sure I'm having a CSS issue, but I just can't figure out how to correct it. Currently, I have these accordions ...
1
vote
4answers
856 views

Python textwrap Library - How to Preserve Line Breaks?

When using Python's textwrap library, how can I turn this: short line, long line xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx into this: short line, long line ...
1
vote
3answers
763 views

Text wrapping around an image (or any element)

Is there a way with CSS to wrap text on both sides of an element (an image for example). I am trying to have an image positioned in the middle of a paragraph and would like text to flow over it. ...
0
votes
1answer
50 views

Adding whitespace to the ends of textwrapping?

I'm looking to wrap a paragraph with a limit of 80 characters, however if there is a necessary break (break long words set to false) and the line total is now 71 for example, how do I add 9 characters ...
0
votes
0answers
81 views

Text wraping in a rectangle in canvas using html5

I am learning html5. I have drqwn a rectangle using canvas and added text in it. Now if the text is longer than the width of the rectangle it gets cutted off. So,is there a way i can fit the text ...
0
votes
2answers
119 views

Python Textwrap - forcing 'hard' breaks

I am trying to use textwrap to format an import file that is quite particular in how it is formatted. Basically, it is as follows (line length shortened for simplicity): abcdef <- Ok line abcdef ...
0
votes
1answer
757 views

text not wrapping around some floated images, wraps in IE & FF but not chrome, safari

This is unlike anything I've read about and I've been totally scratching my head for the last few hours trying to figure out what's going on. I have a hand-coded site @ hartbro.com Part of the site ...
0
votes
1answer
542 views

Text Wrapping when printing DataGrid? .Net

I'm trying to print a DataGrid in a windows forms app and when the width of the columns is set (it's customizable) too narrow to fit the text it just truncates the text instead of wrapping it. Is ...
-2
votes
5answers
1k views

How can I set the line length limit in Text::Wrap?

I would like to know if there was a way to set a width for lines outputted to aid in formatting, to make sure that lines always wrap after a certain amount. I will be using the code below to sort and ...