Source Code: (back to article)
<!DOCTYPE html>
<html>
<head>
<title>Titre du document</title>
<style>
div.blue {
outline-style: solid;
outline-color: #1c87c9;
}
div.green {
border: 1px solid black;
outline-style: solid;
outline-color: #8ebf42;
}
</style>
</head>
<body>
<h2>Exemple de la propriété outline</h2>
<div class="blue">Le Lorem Ipsum est simplement du faux texte employé...</div>
<br>
<div class="green">Le Lorem Ipsum est simplement du faux texte employé...</div>
</body>
</html>