Short left border

by fredericklim

HTML

<div class="mybox">
  Printing Calculator and Consumable
</div>

CSS

.mybox {
  display: flex;
  align-items: center;
  position: relative;
  height: 50px;
  padding: 0 20px;
  background-color: #EEEEEE;
}

.mybox:after {
  content: '';
  position: absolute;
  left: 10px;
  top: 30%;
  height: 40%;
  border-left: 2px solid #CC0000;
}