#example1 {
  border: 10px double black;
  padding: 15px;
  background: #FFAB91;
  background-clip: border-box;
}

#example2 {
  border: 10px double black;
  padding: 15px;
  background: #FFAB91;
  background-clip: padding-box;
}

#example3 {
  border: 10px double black;
  padding: 15px;
  background: #FFAB91;
  background-clip: content-box;
}
