HTML's tag defines a possible line break point. This represents a word break opportunity.
Example
You can try running the following code to learn how to implement the tag in HTML −
1 2 3 4 5 6 7 8 9 10 | <!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>
|
Copy after login
The above is the detailed content of How to indicate potential word-breaking points in a paragraph in HTML?. For more information, please follow other related articles on the PHP Chinese website!