【发布时间】:2011-08-26 22:33:12
【问题描述】:
单击按钮使 div 居中,再次单击左对齐。这适用于除 IE6 之外的所有浏览器。 IE6 不支持margin:0 auto; 我该如何解决这个问题。 div 宽度是动态的,并不总是 200 像素。
检查 jsfiddle http://jsfiddle.net/hZ23J/1/
<button id="center">Left Align</button>
<div></div>
$('#center').toggle(function() {
$('div').css('margin', '0');
$(this).text('Center Align')
}, function() {
$('div').css('margin', '0 auto');
$(this).text('Left Align')
});
【问题讨论】:
标签: javascript jquery html css