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