.highlight {
font-size: 18px;
line-height: 36px;
}
.highlight span {
border-style: solid;
border-width: 1px;
padding: 3px;
border-radius: 5px;
}
.highlight span span {
margin: 0 -3px;
}
.highlight .start {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
border-right: none;
}
.highlight .end {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
border-left: none;
}
.highlight .purple {
background-color: rgba(0, 0, 255, 0.15);
border-color: rgba(0, 0, 255, 0.5);
}
.highlight .green {
background-color: rgba(0, 255, 0, 0.15);
border-color: rgba(0, 255, 0, 0.5);
}
.highlight .orange {
background-color: rgba(255, 150, 0, 0.15);
border-color: rgba(255, 150, 0, 0.5);
}
.highlight .red {
background-color: rgba(255, 0, 0, 0.15);
border-color: rgba(255, 0, 0, 0.5);
}
.highlight .yellow {
background-color: rgba(255, 255, 0, 0.15);
border-color: rgba(255, 255, 0, 0.5);
}
.highlight .blue {
background-color: rgba(0, 150, 255, 0.15);
border-color: rgba(0, 150, 255, 0.5);
}
<div class="highlight">
<span class="purple">Lorem ipsum dolor sit amet, consectetur adipiscing elit, <span class="green start">sed do eiusmod tempor incididunt ut</span></span><span class="green end"> labore et dolore magna aliqua.</span> Ut enim ad minim veniam, quis nostrud <span class="orange">exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</span> Duis aute irure dolor in reprehenderit in voluptate velit esse <span class="red">cillum dolore eu fugiat nulla pariatur. <span class="yellow start">Excepteur sint</span></span><span class="yellow end"> occaecat cupidatat non proident, <span class="blue start">sunt in culpa qui officia</span></span><span class="blue end"> deserunt mollit anim id est laborum.</span>
</div>