I am in the process of optimizing my website for mobile viewing and I'm struggling to figure out how to adjust the line height of text within a div when the text spans two lines without a line break. Here is the current CSS code I am using...
#ProjectName {
font-family: "helvetica_roundedbold";
font-size: 22px;
color: #000000;
margin: 0;
padding: 0;
padding-bottom: 10px;
width: 100%;
z-index: 10;
position: fixed;
left: 200px;
top: 31px;
height: auto;}
This CSS is applied to the following div...
<div id="ProjectName">
<a href="design_museum.html">Design Museum</a><br />
<a href="blendings_tea.html">Blendings Tea</a><br />
<a href="europes_metros.html">Europes Metros</a><br />
<a href="letter_e.html">Letter E</a><br />
<a href="must_see.html">Must See</a><br />
<a href="torsion.html">Torsion</a><br />
<a href="arts_and_crafts_movement.html">Arts & Crafts Movement</a><br />
</div>
The specific text that runs over two lines is 'Arts & Crafts Movement'.
I would greatly appreciate any advice on this matter.