the div with the word test it in, just will not go up the top right….. despite me floating right and specifying top 0
http://www.e-fluential.com/offline/
HELP!!
Thanks in advance
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You should give the element the following properties:
This will make the element go to the top right corner. If you want the element to go to the top right corner of its parent you should give the parent the following property:
This will position the element
relativeto its parent.Another solution would be to wrap the elements on the left with a wrapper, which you will then need to give a
widthand afloat: left;, do the same with the elements that should go right but instead of floating it left give it afloat: right;. The total width of both wrappers should not extend the width of the parent.You’ll probably want to go with the second solution because you don’t need to give your elements absolute coordinates that way.