How to centralize content on a div but with left text alignment on CSS?
First: center content
It’ necessary create a div that will center the content. Follow the necessary css properties bellow:1
text-align: center;
Second: inline block the text with left alignment
All the text needs to be inside a div with the following CSS properties:1
2display: inline-block;
text-align: left;
HTML example:
1 | <div style="background-color:#ccc;text-align:center;"> |
Result:
Foo
That’s nice!
IMPORTANT: note that the text needs to be smaller than block to has the effect