I have two <span> elements:
<span style="margin-right:auto;">©2012 XYZ Corp. All Rights Reserved.</span>
<span style="margin-left:auto;">Built with <a href="http://www.wordpress.org/">Wordpress</a> and hosted by <a href="http://www.mediatemple.net/">(mt)</a> in California.</span>
I want the first <span> to be on the left of the page and the second <span> to be on the right side, regardless of page width (so I can’t use fixed positioning).
What CSS can I use to do this?
The css variable
floatis used to position your elements.The options are:
Here is working example: