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