运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> div { width: 150px; border: 1px solid #000000; } div.a { overflow-wrap: normal; } div.b { overflow-wrap: break-word; } div.c { overflow-wrap: anywhere; } </style> </head> <body> <h1>The overflow-wrap Property</h1> <h2>overflow-wrap: normal (default):</h2> <div class="a">This div contains a very long word: thisisaveryveryveryveryveryverylongword. The long word will not break and wrap to the next line.</div> <h2>overflow-wrap: break-word:</h2> <div class="b">This div contains a very long word: thisisaveryveryveryveryveryverylongword. The long word will break and wrap to the next line.</div> <h2>overflow-wrap: anywhere:</h2> <div class="c">This div contains a very long word: thisisaveryveryveryveryveryverylongword. The long word will break and wrap to the next line.</div> </body> </html>