<html>
<head>
<style>
#myDIV {
width: 150px;
height: 100px;
background-color: lightblue;
border: 1px solid black;
}
</style>
</head>
<body>
<p>Click the "Try it" button to change the let the DIV element break a text between any two letters:</p>
<div id="myDIV">Thiscouldbeaninsainlylargeword</div>
<button onclick="myFunction()">Try it</button>
<script>
function myFunction() {
document.getElementById("myDIV").style.wordBreak = "break-all";
}
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_style_wordbreak by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 21 Dec 2022 17:39:53 GMT -->
</html>