[css-d] justified text and right and left justification on the same, part2

2008-03-20 Thread Stuart King
How do I get the contact justified right and the back to steps to
stay justified left

URL:

http://www.adrianavargasdesign.com/pages/services.html

thank you,

--s
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] justified text and right and left justification on the same, part2

2008-03-20 Thread David Laakso
Stuart King wrote:
 How do I get the contact justified right and the back to steps to
 stay justified left

 URL:

 http://www.adrianavargasdesign.com/pages/services.html

 thank you,

 --s
   





If you mean one to be left, and the other to be right, and both to be on 
the same line, you could try this:
css:
.stuff {border: 1px solid red;overflow: hidden;width: 100%;}
.left-stuff {float:left; width: 16%;}
.right-stuff {float:right; width: 16%;margin-right:-17px;} 
html:
div class=stuff
div class=left-stuff
plt;lt;lt; a href=../index.htmlback to steps/a/p
/div!--/close left-stuff--
div class=right-stuff
pa href=contact.htmlcontact info /agt;gt;gt;/p
/div!--/close right stuff--
/div!--/close stuff--



-- 
http://chelseacreekstudio.com/

__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/