x
1
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<style>
6
p {
7
border-style: solid;
8
}
9
10
p.none {
11
border-left-style: none;
12
}
13
14
p.dotted {
15
border-left-style: dotted;
16
}
17
18
p.dashed {
19
border-left-style: dashed;
20
}
21
22
p.solid {
23
border-left-style: solid;
24
}