I have an ul
with variable element count. When the li are too wide for list to handle them in single line it breaks the line and starts to render the li on lower line so I get something like this:
x - stands for element of a list
| - stands for list boundaries, or whatever that limits list width
|xxxxxxxxx|<- elements reached the end of container and remaining elements will be rendered below
|xxxx |
What I need is to render elements bottom-top so I could get:
|xxxx |
|xxxxxxxxx|<- elements reached the end of container and remaining elements will be rendered above
Is it possible?
Here is some example code
<ul>
<li>Some content</li>
<li>Other content</li>
<li>ContentContent</li>
<li>Zawartość Contentu</li>
</ul>
Currently, it's CSS-free. I can add anything you will recommend to render it bottom-top order. Something like float:bottom
which unfortunately doesn't exist.
<br />
manually? – Processional