Hello, I have the following code:
<dt>
<p style="text-align:left;">
<a href="">SHOW HORSES</a>
</p>
<ul>
<li><a href="">Riding The Best</a></li>
<li><a href="">Western</a></li>
<li><a href="">English</a></li>
<li><a href="">Reference Trainers</a></li>
</ul>
</dt>
with the stylesheet:
ul, li {
display: inline;
margin: 0;
padding: 0;
}
p {
display: inline;
}
/* Background of where the links are placed */
#list dt {
padding:7px;
padding-right: 2%;
text-align: right;
}
How would I set up the p to be all the way on the left, and the list items to be all the way on the right? Is there any way I can do this without using margins and pixels?