.text {
position: relative;
}
.text-decor {
position: absolute;
Width: 180px;
Height: 8px;
top: 10px;
left: 0;
background-color: red;
opacity: 0.6;
}
<div class="text">
<p> another text </p>
</div>
<div class="text-decor"> </div>
<p class="text-decor">another text</p>
<span class="text-decor">another text</span>
p, span {
line-height: 1.25;
}
.text-decor {
position: relative;
}
.text-decor::after {
content: '';
position: absolute;
width: 100%;
max-width: 180px;
height: 50%;
bottom: 0;
left: 0;
background: red;
opacity: 1;
z-index: -1;
}