I want my footer to look like the image above.
My code so far:
.footer {
bottom: 0;
width: 50%;
height: 2.5rem;
color: black;
}
.footer #email {
color: red;
float: right;
}
<footer class="footer">
<P id="email">
[email protected]
</P>
</footer>
2
Answers
I find flex a great way to help me with "blank" content, and the % meassure will help it being responsive, i hope this helps.
Here is the solution: