i'm developing a new music app and I am in need of the following chord progression:
Am F G Am Ab Gdim A#
Hello these are just placeholder lyrics for demonstration purposes, hey hey hello
which should look like this instead:
Am F G Am
Hello these are just placeholder lyrics
Ab Gdim A#
for demonstration purposes, hey hey hello
when you reach the end of the section
I came across a similar issue in an android project, where they recommended utilizing a linear layout to solve it.
edit: as requested, here is the current code snippet I am working with:
<div class="container">
<div class="line">hello this is my first line, it has a lot of words and will wrap to the next line</div>
<div class="line">A B C D E F G H I J K L</div>
</div>
There is no styling applied at the moment, the classes are empty
Edit: the line break should occur at the end of the div, allowing the word to wrap to the next line while still appearing as one continuous line (similar to the example provided)