I; m пытается достичь следующего с помощью CSS:
![enter image description here](https://i.stack.imgur.com/N0txD.png)
Эти строки связаны с каждым контейнером div внутри родительского div-
HTML:
<div class="parent">
<div class="dynamic">
some content some content some content
some content some contentsome content
some content some content some content
</div>
<div class="dynamic">
other some content other some content other some content
othersome content other some contentsome content
other some content other some content some content
</div>
<div class="child3">
Add more content
</div>
</div>
CSS:
.parent {
border-left: 1px solid #ff0000;
}
.dynamic .child3 {
margin-left: 20px;
background: #e9e9e9;
margin-bottom: 10px;
padding: 10px;
}
это то, что у меня есть на данный момент: https://jsfiddle.net/z6nget91/
однако я застрял в том, как добавить строки, чтобы соединить их с каждым контейнером? Любые идеи?? Спасибо