I am trying to achieve the words to be shared with same whitespace around. But not getting the solution. any one help me? in my try you can find the unordered space between word(s).
.parent{
display: flex;
flex-direction: row;
justify-content: space-around;
width:80%;
border:1px solid red;
}
.parent span{
background: lightblue;
}
<div class="parent">
<span>one text</span>
<span>small</span>
<span>lengthy texter than one</span>
<span>medium text two</span>
<span>one</span>
</div>