I want to create a separating line between 2 divs. But the line shows at the end of last div.
.line {
display: inline-block;
width: 2px;
height: 20px;
background: black;
}
<div class="col">
<div class="info_badge" id="teams_footer"></div>
<div class="line"></div>
<div class="info_badge" id="coinventor_footer">hello</div>
</div>
2
Answers
Did you tried using
<hr/>
between the two divs like this?And then add styles to it:
You can achieve your result without the extra
<div>
element