用css把div 在页面居中,?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用css把div 在页面居中,?相关的知识,希望对你有一定的参考价值。
在不考虑div大小的情况下实现。
参考技术A css 不考虑宽好像不行吧~~ 让css居中 外边距 margin:0 auto; 这个属性是根据div宽来居中的 写这个属性 必须要又宽 <div style="margin:0 auto; width:500px;"> 参考技术B margin:0 auto;/*左右的*/锤子居中的话 必须获取上级元素的高度 然后用line-height,line-height的值 要等于上级元素高度的值; 参考技术C <html>
<body>
<table width="100%">
<tr align="center">
<td><div>ddddddd</div></td>
</tr>
</table>
</body>
</html>
试试这个小例子 参考技术D <div style="margin:0 auto;"></div>追问
这个只是左右,上下呢?
追答position:absolute;
top:50%;
left:50%;
margin-top:-200px;
margin-left:-300px;
width:600px;
height:400px;
看来不能像左右那样margin:atuo;简单实现自动居中。
追答是的
本回答被提问者采纳 第5个回答 2013-04-18 margin:0px auto;CSS 居中对齐div水平和页面底部
以上是关于用css把div 在页面居中,?的主要内容,如果未能解决你的问题,请参考以下文章