I am making a simple menu list with a name and a price.
The simple solution:
<ul class="list-unstyled list-menu">
<li>Espresso ........................... $5</li>
</ul>
Results:
Espresso ..................... $5
This works in one "web view", but how can I keep this responsive? For example If I resize window, the container list is in will resize to a lower width and break the "one liner".
So I need to prevent:
Espresso .....
................ $5
Can I solve this with CSS and HTML only?