<div class="container">
  <p>Change the value of the <code>border-color</code> property to see how the border changes.</p>
  <div class="element">
    <p>
      I have four different border colors.
    </p>
  </div>
</div>
body {
  background-color: #F5F5F5;
  color: #555;
  font-size: 1.1em;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.container {
  margin: 40px auto 0;
  width: 90%;
}

.element {
  padding: 20px;
  color: white;
  height: 250px;
  background-color: white;
  border-style: solid;
  border-width: 1em;
  border-color: #006699 salmon;
  /* two-value syntax, you can use one, two, three, or four values */
}