Among my collection of three interconnected divs, there is a continuous gray line.
The following shows the HTML code:
<div class="col-xs-3">
<div class="middle-blue-bg">
<!--Content-->
</div>
...
</div>
This is the accompanying CSS:
.middle-blue-bg:after {
background: #e2e2e2;
height: 4px;
width: 127px;
content: '';
display: block;
position: relative;
top: 98px;
left: -137px;
}
I am looking to remove the initial line. Can you guide me through the process?