There are 3 divs in the example below:
https://i.sstatic.net/ouN6V.png
<ul>
<div class="parent">
<li>
<div>
Lorem Ipsum is simply dummy
</div>
</li>
</div>
<li>
<div class="parent">
<div>
Lorem Ipsum is simply dummy text of the printing and typesetting
</div>
</li>
</div>
</div>
</ul>
I want all of them to be the same width as the longest one. The width of the longest should be equal to the text inside it plus some pixels (e.g. +15px). Since the text will be constantly changing, the width should also dynamically change. The display needs to be inline-table. Is it possible to achieve this using HTML/CSS?