x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<style>
5
    .ex1 {
6
        border: 2px solid #ff4842;
7
        outline: 6px dotted #00ab55;
8
    }
9
</style>
10
</head>
11
<body>
12
13
<h1>The outline property</h1>
14
15
<div class="ex1">A div element with a 2 pixels blue dashed outline. Also notice that the outline is outside of any border.</div>
16
17
</body>
18
</html>