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