WBR
Run
<html>
	<head>
		<title>WBR tag</title>
		<style>
	        .output {
    background-color: gray;
}
#example-paragraphs {
    background-color: white;
    overflow: hidden;
    resize: horizontal;
        width: 9rem;
}
	    </style>
	</head>
	<body>
		<h1> wbr tag example</h1>
		<div id="example-paragraphs">
			<p>Fernstraßenbauprivatfinanzierungsgesetz</p>
			<p>Fernstraßen
				<wbr>bau
					<wbr>privat
						<wbr>finanzierungs
							<wbr>gesetz
			</p>
			<p>Fernstraßen&shy;bau&shy;privat&shy;finanzierungs&shy;gesetz</p>
		</div>
	</body>
</html>