Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a long string (a DNA sequence). It does not contain any whitespace character. e.g.:

ACTGATCGAGCTGAAGCGCAGTGCGATGCTTCGATGATGCTGACGATGCTACGATGCGAGCATCTACGATCAGTCGATGTAGCTAGTAGCATGTAGTGA

what would be the css selector to force this text to be wrapped in an html:textarea or in a xul:textbox

share|improve this question
6  
Hey, that's exactly the beginning sequence of my own DNA!?! ;-) – splattne Jan 31 '09 at 17:11
Ironically the string doesn't break in Stack Overflow either... – splattne Jan 31 '09 at 17:12

8 Answers

up vote 32 down vote accepted
<textarea style="border:1px solid red; width:100px;word-wrap:break-word;">AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA</textarea>
share|improve this answer
Thanks but I'm afraid it doesn't work (tested with FF3) – Pierre Jan 31 '09 at 16:59
It's supported only in IE, Safari, and FF3.1 (alpha). – Adam Bellaire Jan 31 '09 at 17:21
have you tried the cols attribute (non-css)? – heeen Jan 31 '09 at 17:26
just tested your solution with the last FF . Worked fine. – Pierre Sep 7 '09 at 6:15
Works great in Chrome – NickBenedict Jul 5 '12 at 19:47

Place zero-width spaces at the points where you want to allow breaks. The zero-width space is &#8203; in HTML. For example:

ACTGATCG&#8203;AGCTGAAG&#8203;CGCAGTGC&#8203;GATGCTTC&#8203;GATGATGC

share|improve this answer
Good suggestion, I've learned something new today, thank you! – contam Jan 27 '12 at 11:36
Thanks for this solution. Was having a hard time getting something like this to work inside a table, and this solution is the only one that I found works in IE, Firefox and Chrome. – Farinha Feb 8 '12 at 16:24
+1, this works better as it covers more cases, even though question was for a more particular case. – dalbaeb Feb 9 '12 at 19:16
This is a better method than the accepted answer, good call. – sage88 Apr 30 at 13:25
+1 , its amazing ... i can sleep now – Oxi May 12 at 21:18

For me this works,

<td width="170px" style="word-wrap:break-word;">
  <div style="width:140px;overflow:auto">
    LONGTEXTGOESHERELONGDIVGOESLONGTEXTGOESLONGTEXTGOESLONGTEXTGOESLONGTEXTGOESLONGTEXTGOESLONGTEXTGOESLONGTEXTGOESLONGTEXTGOESLONGTEXTGOESLONGTEXTGOESLONGTEXTGOESLONGTEXTGOESLONGTEXTGOESLONGTEXTGOESLONGTEXTGOESLONGTEXTGOESLONGTEXTGOESLONGTEXTGOESLONGTEXTGOESLONGTEXTGOESLONGTEXTGOESLONGTEXTGOESLONGTEXTGOESLONGTEXTGOESLONGTEXTGOESLONGTEXTGOESHERELONGDIVLONGTEXTLONGTEXT
  </div>
</td>

You can also use a div inside another div instead of td. I used overflow:auto, as it shows all the text both in my Opera and IE browsers.

share|improve this answer

I don't think you can do this with CSS. Instead, at regular 'word lengths' along the string, insert an HTML soft-hyphen:

ACTGATCG&shy;AGCTGAAG&shy;CGCAGTGC&shy;GATGCTTC&shy;GATGATGC&shy;TGACGATG

This will display a hyphen at the end of the line, where it wraps, which may or may not be what you want.

Note Safari seems to wrap the long string in a <textarea> anyway, unlike Firefox.

share|improve this answer
Wow, didn't even know about that. Neat! – Daniel Schaffer Jan 31 '09 at 17:11

If you're using PHP then the wordwrap function works well for this: http://php.net/manual/en/function.wordwrap.php

The CSS solution word-wrap: break-word; does not seem to be consistent across all browsers.

Other server-side languages have similar functions - or can be hand built.

Here's how the the PHP wordwrap function works:

$string = "ACTGATCGAGCTGAAGCGCAGTGCGATGCTTCGATGATGCTGACGATGCTACGATGCGAGCATCTACGATCAGTCGATGTAGCTAGTAGCATGTAGTGA";

$wrappedstring = wordwrap($string,50,"<br>",true);

This wraps the string at 50 characters with a <br> tag. The 'true' parameter forces the string to be cut.

share|improve this answer
Thanks..This worked – noobcode Mar 8 '11 at 12:42
You can mix this solution with Remy's solution to insert zero-width spaces: wordwrap ($longtext, 5, "&#8203;", true); – MV. Mar 16 at 9:04

For word-wrap:break-word; to work for me, I had to make sure the display was set to block, and that the width was set on the element. In Safari, it had to have a p tag and the width had to be set in ex.

share|improve this answer

Use a CSS method to force wrap a string that has no white-spaces. Three methods:

1) Use the CSS white-space property. To cover browser inconsistencies, you have to declare it several ways. So just put your looooong string into some block level element (e.g., div, pre, p) and give that element the following css:

some_block_level_tag {
    white-space: pre;           /* CSS 2.0 */
    white-space: pre-wrap;      /* CSS 2.1 */
    white-space: pre-line;      /* CSS 3.0 */
    white-space: -pre-wrap;     /* Opera 4-6 */
    white-space: -o-pre-wrap;   /* Opera 7 */
    white-space: -moz-pre-wrap; /* Mozilla */
    white-space: -hp-pre-wrap;  /* HP Printers */
    word-wrap: break-word;      /* IE 5+ */
}

2) use the force-wrap mixin from Compass.

3) I was just looking into this as well and I think might also work (but I need to test browser support more completely):

.break-me {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

Reference: wrapping content

share|improve this answer

Looking at how stackoverflow does it, I would use the following css.

.post-text p {
  word-wrap: break-word;
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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