I wish to display three pieces of text on the same horizontal line, as follows:
| |
| Chapter one Language: English |
| |
I am using |
to represent either the extreme left or right of the window. This is what I have now:
<div>
<div>Chapter one</div>
<div>Language:</div>
<div>English</div>
</div>
The text English
will eventually be replaced by a combo box. How should I style my divs?