在html div中顯示它時,如何在某個點上拆分長字/網址?在html/css中「硬」字拆分/拆分
應該是這樣:
thisisareallylongwordt
hatneedstobebroken her
e or something like th
at.
在html div中顯示它時,如何在某個點上拆分長字/網址?在html/css中「硬」字拆分/拆分
應該是這樣:
thisisareallylongwordt
hatneedstobebroken her
e or something like th
at.
您需要手動插入<br>
標籤:
thisisareallylongwordt<br>
hatneedstobebroken her<br>
e or something like th<br>
at
有AFAIK沒有CSS的解決方案不亞於一個希望之一。
編輯:由於拉烏爾建議使用軟連字符­
也適用。不知道自己存在。
,如果你想在div的邊緣突破,而不是溢出它使用
div {word-wrap:break-word}
你想一個靜態的文字換行或更多的東西動態的的DIV的大小而變化的話?如果你想要後者,那麼你可能會想使用JavaScript。 jQuery庫有一個自動換行的插件:
http://plugins.jquery.com/project/wordWrap
丹
該插件適用於'
啊,謝謝你的幫助 - 這會教會我在工作之前做一些快速的搜索。 – 2010-08-24 12:43:29
我想,他說:「在某一點」。儘管如此,好的指針。 – FK82 2010-08-24 08:31:11