I have a piece of HTML and CSS
<style type="text/css">
#main *{
position:absolute;
}
</style>
<div id="main">
<div class="cards_description">
Business
<br />
Cards!
</div>
</div>
In Firefox. Even though there is a line break. The text is on the same line
Business Cards!
instead of
Business
Cards!
I do not have this issue in chrome. Is there some CSS that will correct this issue?
I am on Firefox version 17.0.1.
Try wrapping it in a
<p>tag, Like:<p>Business <br />Cards!</p>