Source Code: (back to article)
<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
<style>
span {
display: block;
width: 250px;
border: 1px solid purple;
overflow: hidden;
white-space: nowrap;
}
</style>
</head>
<body>
<h1>White-space property example</h1>
<span>
Lorem Ipsum is simply dummy text.Lorem Ipsum is simply dummy text. Lorem Ipsum is simply dummy text. Lorem Ipsum is simply dummy text. Lorem Ipsum is simply dummy text. Lorem Ipsum is simply dummy text. Lorem Ipsum is simply dummy text.
</span>
</body>
</html>