普通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>