1
<!doctype html>
2
<title>Example</title>
3
<style>
4
div {
5
  font-size: 1.5em;
6
  padding: 20px;
7
  border-left-width: 7px;
8
  border-left-style: dotted;
9
  border-left-color: orange;
10
  }
11
</style>
12
<div>This 'div' is styled using the CSS border-left-style. Try changing the value to see the effect it has on the left border style.</div>