解决方法
你在
Centering <UL> + Keeping <LI>’s Aligned问了同样的问题,我已经回答了你。
给你的div一个类名中心。假设您的div宽度为200像素,边距:0自动将居中和文本对齐:左侧将文本左对齐,同时由于边距自动保持其居中。
.center{ width:200px; margin:0 auto; text-align:left; }
检查http://jsfiddle.net/8mHeh/1/的工作示例