I am looking to organize three distinct pieces of information in a horizontal line layout, shown below:
| |
| Chapter one Language: English |
| |
Currently, I am using the |
symbol to indicate the edges of the display window. This is my current setup:
<div>
<div>Chapter one</div>
<div>Language:</div>
<div>English</div>
</div>
The word English
will eventually be substituted with a dropdown menu. What styling should I apply to these div elements?