如何在 HTML 中的部分中指示一个潜在的单词断点?
HTML <wbr> 标记定义了一个潜在的行中断点(如果需要)。它代表“单词断点机会”。
示例
你可以尝试运行以下代码来学习如何在 HTML 中实现 <wbr> 标记 −
<!DOCTYPE html> <html> <head> <title>HTML wbr Tag</title> </head> <body> <wbr />The browser to extend the document window beyond the size of the viewing pane and the poor user must scroll right<wbr /> </body> </html>
广告