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.
我目前正在设计一个简单的博客主题。但是,我有一个问题。放置发布日期、作者姓名和类别名称的“post_meta”部分(包装在一个我让它浮动的类中)在 Internet Explorer 中不能像 Firefox 和 Google Chrome 浏览器那样很好地浮动。
这里的要点是,我只想将“post_meta”部分放在页面的中心。就这样。希望你们能帮助我。
谢谢!
您使用了错误的方法:
不要将 col2 div 浮动到左侧,而是使用margin:0 auto;,这会将其在屏幕上居中:
margin:0 auto;
.col2{ background:; height:30px; width:350px; margin: 0 auto; }