I have two lines of text in a p tag that I break with a br tag. But they don't seem to align properly, this is not for every letter, but in my case the L has a little whitespace left to it.
This is my html code:
<p class="footer-title">LET'S WORK <br> TOGETHER</p>
And this is my css code for the class:
.footer-title {
font-size: 45px;
color: #FF4545;
margin-bottom: 20px;
font-weight: bold;
text-align: left;
font-family: sans-serif;
}
Why are those particular letters not aligned? And how can I fix this?