x
 
1
<!DOCTYPE html>
2
<title>Example</title>
3
<style>
4
  div {
5
    padding: 20px;
6
    border-bottom-width: 4px;
7
    border-bottom-style: double;
8
    border-bottom-color: orange;
9
  }
10
</style>
11
12
<div>
13
  This 'div' has a bottom border.
14
</div>