HTML Tutorial
The <wbr> tag is used to specify where a line break may occur in text. It does not guarantee a line break but provides a suggested break point when the text is too wide for the display area.
<p>This is a very long sentence that may be too wide for the display area. <wbr> So a line break may occur here.</p>
<p>This sentence is not too long for the display area, so no line break will occur at the <wbr> tag.</p>
Exploring the <wbr> tag:
<html>
<head>
<title>Exploring the <wbr> Tag</title>
</head>
<body>
<h1>Example of <wbr> Tag</h1>
<p>This sentence is very long and may require a line break. <wbr> If the display area is narrow enough, a line break will occur at the <wbr> tag.</p>
</body>
</html>