<!DOCTYPE html>
<html>
<head>
<title>Titre du document</title>
<style>
p.t1 {
white-space: nowrap;
}
p.t2 {
white-space: normal;
}
p.t3 {
white-space: pre-wrap;
}
</style>
</head>
<body>
<h2>Exemple de la propriété white-space</h2>
<h3>white-space: nowrap;</h3>
<p class="t1">
Lorem Ipsum est simplement du faux texte.
Lorem Ipsum est simplement du faux texte.
Lorem Ipsum est simplement du faux texte.
</p>
<h3>white-space: normal;</h3>
<p class="t2">
Lorem Ipsum est simplement du faux texte.
Lorem Ipsum est simplement du faux texte.
Lorem Ipsum est simplement du faux texte.
</p>
<h3>white-space: pre-line;</h3>
<p class="t3">
Lorem Ipsum est simplement du faux texte.
LoremLorem Ipsum est simplement du faux texte.
Lorem Ipsum est simplement du faux texte.
</p>