我可以加载页面,它将一直向左按下刷新,然后加载居中!我用铬! http://www.soldbybillcox.com/index.html
同样在http://www.soldbybillcox.com/listings.html我似乎无法让页面居中!
并最重要的是如何删除www。从网址确定滚动条是否会出现在iframe
中答案 0 :(得分:2)
将整个页面包装在DIV标记中,如下所示:
<div style="margin: 0 auto; width: 912px;">
/*You page and stuff*/
</div>
请注意,'912'可以更改,只需将其设置为与页面宽度完全相同。
答案 1 :(得分:1)
用
包装整个内容<div id="container" style="margin:0 auto width:960px">
All the content here...
</div>