I am currently working on customizing an HTML logfile that allows specific items (like exceptions) to be collapsed. To achieve this, I have utilized an unordered list with several li elements. However, I am facing an issue where the first li element is not displayed inline with the previous text (in this case, the timestamp).
https://i.sstatic.net/HQy8C.png
For reference, I have created a JSFiddle demonstrating this problem: https://jsfiddle.net/rs358vw8/
<div class="debug">
<span class="timestamp">[09:33:04.137] </span>
<span class="message">
<ul class="tree">
<li><a href="#" class="exception">Exception message</a>
<ul>
<li><a href="#" class="exception">Innereception</a></li>
<li><a href="#" class="exception">Stacktrace</a></li>
<li><a href="#" class="exception">Bla</a></li>
</ul>
</li>
</ul>
</span>
<br>
</div>
Is there a way to ensure that the first li element is displayed inline with the timestamp/text?