Broken Edge Bar Chart

by Marventus

HTML

<div class="row">
  <div class="fill">
    <div class="tip"></div>
    <div class="tip"></div>
  </div>
</div>
<div class="row">
  <div class="fill">
    <div class="tip"></div>
    <div class="tip"></div>
  </div>
</div>

CSS

body,
body * {
  box-sizing: border-box;
}

body {
  padding: 1em;
}

.row {
  border: 1px solid #ddd;
  margin-top: 1em;
  width: 100%;
}

.fill {
  background: #e88;
  height: 50px;
  position: relative;
  width: 50%;
}
.tip {
  background: rgb(243,245,246);
  height: 20px;
  position: absolute;
  right: -8px;
  width: 20px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
}
.fill .tip:first-of-type {
  top: 2px;
}
.fill .tip:last-of-type {
  bottom: 2px;
}