1):div的一般居中(注意:一定要设置div的width):
<div id="i_div" style="border: 1px solid red;margin: 0 auto; width:500px;">json9527</div>
2):div的绝对定位居中(注意:一定要设置父标签的position为relative)
<div style="position: relative;"> <div id="i_div" style="border: 1px solid red;position:absolute;top:30px;left:50%;width:500px;margin-left:-250px;">json9527</div> </div>
3):动态设置绝对定位居中(注意这里的margin-left变成了marginLeft)
<div style="position: relative;"> <div id="i_div" style="border: 1px solid red;">json9527</div> </div> $("#i_div").css({position:"absolute",top:"30px",left:"50%",width:"500px",marginLeft:"-250px"});
时间: 2024-10-30 06:10:41