3

情况如下:我正在尝试一些 MySpace 页面定制。如果您曾经尝试过[stackoverflow],我相信您会理解它是多么令人沮丧。
基本上,它可以通过 CSS 自定义,在一定的规则集内(例如,'#' 字符是不允许的......多么有用!)。
看看这个博客,我将其用作自定义的基础

所以唯一的问题是评论部分,“朋友”发表他们的感受。它已经...

max-width:423px;

...设置在桌子上,但我发现如果在评论部分发布长 URL,它会吹出桌子宽度,无论最大设置如何!

问题:有没有办法管理会推动表格宽度的文本?
也许分割/切断字符串?还是我应该做的更多..?
URL 以文本形式发布,而不是 href。

顺便说一句,使用 Firefox 和 Firebug。

编辑:也不允许使用 javascript ;)

另一个编辑刚刚用IE7检查过,它似乎工作..所以Firefox在这种情况下很麻烦..

4

3 回答 3

1

Have you tried the various values for the "overflow" css property? I think that may do what you need in some permutation.

于 2008-09-26T07:28:17.353 回答
1

a few browsers support word-wrap

ex.

<div style="width: 50px; word-wrap: break-word">insertsuperlongwordhereplease</div>

browser support currently is IE / Safari / Firefox 3.1 (Alpha)

于 2008-09-26T07:31:24.883 回答
0

Your options are pretty limited, if you are using only CSS. You can try

 overflow: hidden

to hide the offending parts. CSS 3 supports text-wrap, but support for it is probably non-existent. IIRC there is an IE-only css-property for doing the same thing, but I can't remember it at the moment and my Google-Fu fails me.

于 2008-09-26T07:29:40.113 回答