Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在重写我的网页以了解有关 HTML5 的更多信息。目前我正在为页面内容使用包装器 div,其中:
#pageContainer { width: 960px; margin: 0 auto; }
这仍然是使页面居中的正确/最佳方式吗?
谢谢!
这仍然是首选方式。
HTML5 和 CSS3 可能没有你想象的那么具有革命性,基本的布局技术还是一样的,只是多了一些技巧,而且随着旧浏览器的消失,它们的担心也更少了。
另一种常见的方法是:
#container{ position: absolute; left: 50%; width: 1000px; margin-left: -500px; height: 100%; }