<html>
<head>
<style>
body {
background-color:#E7E9EB;
}
#myDIV {
height:300px;
background-color:#FFFFFF;
}
.ex1 {
background-color: lightblue;
width: 200px;
height: 100px;
white-space: nowrap;
}
</style>
</head>
<body>
<h1>The white-space property</h1>
<div id="myDIV">
<div class="ex1">Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</div>
</div>
</body>
</html>