x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<style>
5
    .ex1 {
6
        border-left-style: dotted;
7
        border-left-color: #00ab55;
8
    }
9
10
    .ex2 {
11
        border-style: solid;
12
        border-left-color: #00ab55;
13
        border-left-style: dotted;
14
    }
15
</style>
16
</head>
17
<body>
18
19
<h1>The border-left-style property</h1>
20
21
<div class="ex1">Lorem Ipsum is simply dummy text of the printing and typesetting industry.</div>
22
23
</body>
24
</html>