自动换行实例代码
发布时间:2016年2月3日 作者:未知 查看次数:1500
word-wrap 属性允许长单词或 URL 地址换行到下一行。 代码: <!DOCTYPE html> <html> <head> <style> p.test { width:11em; border:1px solid #000000; word-wrap:break-word; } </style> </head> <body> <p class="test">This paragraph contains a very long word: thisisaveryveryveryveryveryverylongword. The long word will break and wrap to the next line.</p> </body> </html>
|
|
|