Lets say I have an image and I would like to position it not exactly at the center nor at right, what html code I should be using to do this?
I want to put the exact position I want instead of using center or right or left.
Thanks
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.
I think you have to use at least a little bit of CSS. With inline CSS it is easy to use (but maybe not the best way doing it inline).
So use the
styleattribute in HTML and set the position with CSS.With
position:fixed; ...you can set the image always at the same position of your screen, even when you are scolling down the page.