here is the working fiddle:
I need to place the 3 items (text and 2 images), vertically aligned (it’s ok) but the right picture should be anchored on right, and the text centered
Good CSS
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.
SPAN tags are as wide as their CONTENTS, so setting something to be centered doesn’t make any sense.
Use a DIV (a block element) instead. Block elements are as wide as their CONTAINERS.
One good trick, add a background-color or border to the element do you can see exactly where it is in the layout. This is very hand in debugging these types of issues.