如何强制将没有任何空白的长字符串包裹起来?
我有一个很长的字符串(DNA 序列)。 它不包含任何空白字符。
例如:
ACTGATCGAGCTGAAGCGCAGTGCGATGCTTCGATGATGCTGACGATGCTACGATGCGAGCATCTACGATCAGTCGATGTAGCTAGTAGCATGTAGTGA
强制将此文本包装在 html:textarea
或 xul:textbox
中的 CSS 选择器是什么?
I have a long string (a DNA sequence). It does not contain any whitespace character.
For example:
ACTGATCGAGCTGAAGCGCAGTGCGATGCTTCGATGATGCTGACGATGCTACGATGCGAGCATCTACGATCAGTCGATGTAGCTAGTAGCATGTAGTGA
What would be the CSS selector to force this text to be wrapped in a html:textarea
or in a xul:textbox
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(16)
对于块元素:
对于内联元素:
for block elements:
for inline elements:
在您想要允许中断的位置放置零宽度空格。 HTML 中的零宽度空格是
。 例如:ACTGATCGAGCTGAAGCGCAGTGCGATGCTTCGATGATGC
Place zero-width spaces at the points where you want to allow breaks. The zero-width space is
in HTML. For example:ACTGATCGAGCTGAAGCGCAGTGCGATGCTTCGATGATGC
以下是一些非常有用的答案:
如何防止长单词被破坏my div?
为了节省你的时间,这可以用 css 来解决:
Here are some very useful answers:
How to prevent long words from breaking my div?
to save you time, this can be solved with css:
对我来说这有效,
您也可以在另一个 div 中使用 div 而不是
td
。 我使用了overflow:auto
,因为它在我的 Opera 和 IE 浏览器中显示了所有文本。For me this works,
You can also use a div inside another div instead of
td
. I usedoverflow:auto
, as it shows all the text both in my Opera and IE browsers.我认为你不能用 CSS 做到这一点。 相反,沿着字符串按照常规的“字长”插入一个 HTML 软连字符:
这将在行尾(即换行位置)显示一个连字符,这可能是您想要的,也可能不是您想要的。
注意 Safari 似乎将长字符串包装在
I don't think you can do this with CSS. Instead, at regular 'word lengths' along the string, insert an HTML soft-hyphen:
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.使用 CSS 方法强制换行没有空格的字符串。 三种方法:
1) 使用CSS 的white-space 属性。 为了解决浏览器不一致的问题,您必须通过多种方式声明它。 因此,只需将您的 looooong 字符串放入某个块级元素(例如,div、pre、p)中,并为该元素提供以下 css:
2)使用 来自 Compass 的强制换行混合。
3)我也只是在研究这个,我认为也可能有效(但我需要更完整地测试浏览器支持):
参考:wrapping内容
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:
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):
Reference: wrapping content
我通过 CSS 的方式(当没有适当的方法插入特殊字符时):
如下所示: http://kenneth.io/blog/2012/03/04/word-wrapping-hypernation-using-css/
在那里可以找到一些额外的研究。
My way to go (when there is no appropiate way to insert special chars) via CSS:
As found here: http://kenneth.io/blog/2012/03/04/word-wrapping-hypernation-using-css/
with some additional research to be found there.
为了让
word-wrap:break-word;
为我工作,我必须确保display
设置为block
,并且宽度已在元素上设置。 在 Safari 中,它必须有一个p
标签,并且width
必须在ex
中设置。For
word-wrap:break-word;
to work for me, I had to make sure thedisplay
was set toblock
, and that the width was set on the element. In Safari, it had to have ap
tag and thewidth
had to be set inex
.使用
标签:我认为这比使用零宽度空格
更好,后者在复制文本时可能会导致问题。Use
<wbr>
tag:I think this is better than using zero-width space
which could cause problems when you copy the text.如果您使用 PHP,那么 wordwrap 函数可以很好地解决此问题:
http://php.net/manual/en/function.wordwrap.php
CSS 解决方案
word-wrap:break-word;
似乎在所有浏览器中都不一致。其他服务器端语言具有类似的功能 - 或者可以手工构建。
PHP 自动换行函数的工作原理如下:
这将使用
将字符串换行至 50 个字符。 标签。 'true' 参数强制字符串被剪切。
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:
This wraps the string at 50 characters with a <br> tag. The 'true' parameter forces the string to be cut.
在表格大小不固定的情况下,下面的行对我有用:
In a case where the table isnt of fixed size, below line worked for me:
如果您使用 Bootstrap,更好的情况是使用此类“text-break”。
示例:
mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm
您应该在官方 Bootstrap 文档页面中获取更多信息
In case if you use Bootstrap, better case for you is use this class "text-break".
Example:
<p class="text-break">mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm</p>
More informationg you should get in official Bootstrap documentation page
简单地:
Simply:
这是我使用
white-space: pre-wrap;
编写的代码我知道
width
值看起来很奇怪,您应该将其更改为适合您需要的值。Here is the code I come into using
white-space: pre-wrap;
I know the
width
value is looks odd, you should change it to value fits your needs .只需设置
width
并添加float
对我有用:-)just setting
width
and addingfloat
worked for me :-)