In my page footer I want to have a copyright, and a Privacy Policy/Terms of Use. I want the Copyright to be justified left, and the PP/TOS right.
this is all nested inside my footer div:
Now this works, except the new line becuase div is a block (by default). But if I just change div's to spans it just center justifies (beased on other div setting). Im more curious as to why it works with div's and not spans?
this is all nested inside my footer div:
Code:
#footer {
width:auto;
height:auto;
margin: 0;
padding-top: 5px;
}
<div style="text-align:left"><a href="#" class="copy u">AspexPOS.Com</a> © 2007 • All rights reserved </div>
<div style="text-align:right">Please read our <a href="index-5.html" class="copy u">Privacy Policy</a> and <a href="#" class="copy u">Terms Of Use</a></div>