您的位置:首页 > Web前端 > CSS

div+css页面居中代码

2015-05-02 15:01 99 查看
普通div和html混写可以这样写,设置

text-align:center,

margin:0px auto

最简单的方法就是 把你的body这样设置:

<body style="text-align:center;">
<div style="margin:0px auto"></div>

</body>

或者直接设置css文件。在文件里面这样写

<style>
#content{ width:778px; margin:0 auto; text-align:center;}
</style>
<div id="content">看看是不是居中了</div>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: