我现在正在这样做,这不是中心的:
$div = $('<div style="background-color:yellow;position:absolute;top:0;"><b>Loading...</b></div>').appendTo('body');
答案 0 :(得分:3)
要使自动边距正常工作,您还需要为div定义宽度,否则它只占用整个屏幕宽度,您将看不到任何差异。
但是,在这种情况下,您需要的只是将text-align: center;
添加到原始CSS中,据我所见?
答案 1 :(得分:1)
给它
margin: 0 auto;
答案 2 :(得分:0)
<div style="text-align: center">
<div style="text-align: left; margin: 0 auto; width: 50%; background: yellow">
Your text here
</div>
</div>