within a div while keeping the text left-aligned - 易学问答
within a div while keeping the text left-aligned
I have multiple divs with a fixed width containing tags which contain various lengths of text.
I want this text to remain left-aligned but if the
Set your outer div to text-align: center; and your inner p's to display: inline-block;
text-align: center;
display: inline-block;
Fiddle: http://jsfiddle.net/ZL4GM/