wbr
I. Description
The html wbr element is used to indicate a place in a word where the browser may break the word, with a newline, if necessary.
II. Examples
<!DOCTYPE html>
<html>
<head>
<title>Example Page</title>
</head>
<body>
<h1>Example HTML Page</h1>
<p>
Thermo<wbr/>dynamics is the study of the relation<wbr/>ship between
heat, work, and temperature; and their relation to energy, entropy,
and the physical properties of matter and radiation.
</p>
</body>
</html>