How do I align text to the left on a div that is centered on the screen ?
Share
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.
Use
margin: autoto center thediv, andtext-align: leftto align the text:HTML:
CSS:
Working example: http://jsfiddle.net/RichieHindle/4XHDt/1/
Note that the
text-align: leftisn’t necessary in this example because left-alignment is the default. You only need it if the alignment has been set to something other thanleftby a parent element.