I need some help with this question as I have been trying to figure it out but can't seem to get it right. I have read various answers, but none of them are working for me. It seems like there is something missing or incorrect in my approach. Any guidance on what I should do and why would be greatly appreciated.
footer {
display: inline-block;
position: relative;
height: 15vh;
width: 100vw;
background: #1a1a1a;
border-top: 1px solid #232323;
color: #a0a0a0;
padding-left: 5%;
box-sizing: border-box;
}
footer p {
display: inline-block;
vertical-align: middle;
line-height: 1vh;
}
<footer>
<p>Copyright 2016 - Say my name. All Rights Reserved</p>
</footer>