a CSS property that defines how to break or wrap lines within words

learn more… | top users | synonyms

0
votes
2answers
23 views

Word-break:break-word not working in Firefox 21

I've added word-break:break-word to the comments on my site to start breaking up the words when they overflow the comment box, but it doesn't appear to be working in Firefox. I've done a JS fiddle of ...
0
votes
0answers
8 views

Need help in fixing word wrap.

I am using fontface for a website of mine inorder to display malayalam language ( Regional language of kerala, India ). Every thing is working fine in all browsers except the word wrapping in chrome. ...
0
votes
2answers
42 views

No consistent word-breaking in Firefox

Please take a look in Firefox at the development site here. The same phrase "Accountantskantoor verschaeren-mertens" is shown twice, once in the sidebar and once in the upper right corner. As you ...
0
votes
3answers
527 views

how to use automatic css hyphens with word-break: break-all?

I'm using word-break: break-all; and want to know how I can have the browser automatically insert the hyphens, as demonstrated in this MDN example: doc: ...
0
votes
1answer
143 views

Break up large words / Prevent breaking layout / Hyphenator js

I have seen and gone through too many pages explaining the same problem and having various successes. What I am trying to do is come up with a method that I can break up large words so that they don't ...
0
votes
1answer
390 views

css3 word-wrap:break-word / break-all, no hyphen

css3 specs say there is partial support for word-wrap:break-word; In chrome you must use word-wrap:break-all; but there is no hyphen. I'm using text-align:justify; Has any come up with a solution for ...
1
vote
2answers
213 views

CSS- force words to new line rather than word-breaking

My client wants no words to be broken on his site. Example: The dog went for a walk and ran to- wards the car. SHOULD BE The dog went for a walk and ran towards the car. The issue is only ...
0
votes
1answer
105 views

wrong display for single quotes with word-break:break-all

<html> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <body> <table style="width:150px; word-break:break-all;"> <tr> ...
2
votes
8answers
1k views

Html2pdf doesn't support word-break:break-all css

hai everybody i am using html2pdf ,it doesn't support word-break:break-all css any idea? example <td style="width:30%;word-break:break-all ;"> ...
4
votes
2answers
207 views

Smarter word break in CSS?

If I just put word-break: break-all on an element, I often end up with this: Hello people, I am typing a mes sage that's too long to fit! Obviously this would be much better as: Hello ...
1
vote
1answer
415 views

Wrapping long words in a flexible html table in Firefox

I have a table with two columns. There is a very long word in the first column. I want to have the long word wrapped. You might have noticed this is the same issue as Word-wrap in a html table. The ...
1
vote
1answer
72 views

CSS - How to break a line only at division borders

I have the following code http://jsfiddle.net/yXwh9/3/ and the result is http://jsfiddle.net/yXwh9/3/embedded/result/ The problem is that the first line is broken and "Techconnect is a group where ...
2
votes
2answers
532 views

FF not displaying word-wrap CSS property

I'm experimenting within a Wordpress framework, trying to get blog post titles to appear in a large square block, with line breaks appearing mid-word if necessary to maintain the shape. Using the ...
10
votes
5answers
674 views

Css for an element that allows break-word on child divs, but that can also expand to take the width of its children

I'm trying to determine whether it's possible to create css for an element that supports word-wrap:break-word, but that also expands to take the width of its children when breaking is not possible. ...
9
votes
6answers
6k views

breaking words using css

When the text in <p> tag is too long, it appears like this, how to prevent this with css? I've tried the css property word-break: break-all; but Firefox and Opera doesn't support this ...
5
votes
1answer
732 views

Can JQuery detect the last element on a line before it wraps on the second line?

<style> .ms_menu ul{list-style:none;} .ms_menu ul li{float:left; padding:5px; border-right:1px solid #000000;} .ms_menu ul li:last-of-type{border-right:none;} </style> ...
1
vote
2answers
253 views

How to set the width of my table columns to a fixed value?

I'm facing a rather difficult issue at the moment; really appreciate your help. I have a table with 2 columns, td1 and td2, and containing texts and both of which have fixed widths. td1.width = 10px ...
3
votes
2answers
5k views

How do you force line breaks between words only in css/html?

I have just a regular piece of text in a <p> tag inside a <div> tag. But only Firefox displays it correctly. Firefox breaks the lines between the words. All other browsers break the line ...
10
votes
7answers
3k views

How can I allow text to wrap inside a word if necessary?

I am looking for the best solution to allow text to wrap in the middle of a word if necessary. By best, I mean most browser-compatible, and will favor word breaks before it breaks inside a word. It ...