<div class='container'>
<div class='Greeting'>
Hello there this is B
</div>
<div class='banana'>
Hello B
</div>
</div>
.container{
display: flex;
width: 100%;
justify-content: space-between;
}
Having a container div with two nested divs. The goal is to create an svg line between them while accounting for variable text lengths. How can the length of the space between be calculated?