I'm trying to align the text 'Made by XYZ' in the center and have the 'Return to Top' link on the right side of the same line. However, my current code doesn't seem to be achieving this. What am I missing?
<div id="footer_container">
<span style="text-align: center">Made by XYZ</span>
<span style="float: right"><a href="#top">Return to Top</a></span>
</div>
Below is the CSS for the footer container:
#footer_container
{
background: #7fc041;
bottom: 0;
height: 1.9em;
left: 0;
position: fixed;
width: 100%;
}