I want a whole block to be centered in its parent, but I want the contents of the block to be left aligned.
Examples serve best
On this page :
http
If I understand you well, you need to use to center a container (or block)
margin-left: auto; margin-right: auto;
and to left align it's contents:
text-align: left;