x
1
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<style>
6
p.one {
7
border-style: dotted solid dashed double;
8
}
9
10
p.two {
11
border-style: dotted solid dashed;
12
}
13
14
p.three {
15
border-style: dotted solid;
16
}
17
18
p.four {
19
border-style: dotted;
20
}
21
</style>
22
</head>
23
24
<body>
25
<p class="one">This is some text in a paragraph.</p>
26
<p class="two">This is some text in a paragraph.</p>
27
<p class="three">This is some text in a paragraph.</p>
28
<p class="four">This is some text in a paragraph.</p>
29
</body>
30
</html>