如何在HTML的 <nobr>部分中指示潜在的断点?

如果需要,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>