1
<!DOCTYPE html>
2
<title>Example</title>
3
<style>
4
.cool-border {
5
  width: 200px;
6
  padding: 30px;
7
  border: 1em double #edb742;
8
  border-image-source: url(/pix/css/css3/properties/border-image-1.png); 
9
  border-image-slice: 28; 
10
  border-image-width: 14px; 
11
  border-image-outset: 0; 
12
  border-image-repeat: round; 
13
}
14
</style>
15
<div class="cool-border">
16
  This box has a cool border?
17
</div>