【发布时间】:2013-03-02 06:01:58
【问题描述】:
在 Safari 中运行良好,但在 IE7 中它左对齐。 http://cgi.ebay.co.uk/ws/eBayISAPI.dll?ViewItem&item=160653524585#ht_500wt_1372
有什么办法让它也以 IE 为中心?谢谢
.container {
width:980px;
background-position: center;
padding: 0;
margin: auto;
font-family: "Trebuchet MS";
font-size: 12px;
}
</style>
</head>
<body>
<div class="container">
<div class="clear">dfgfdg</div>
</div>
编辑:
有人也有 eBay 帐户来进行测试吗?我知道厚脸皮,但我相信很多人都会受益!
编辑 2:
这段代码仍然渲染到左边,真的很烦,因为它可以做到:
.wrapper
{
margin: 0 auto 0 auto;
width: 980px;
text-align: center;
}
.container
{
width: 100%;
text-align: left;
}
</style>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Untitled Document</title>
</head>
<body>
<div class="wrapper">
<div class="container">
your content here.your content here.your content here.your content here.your content here.your content here.your content here.your content here.your content here.your content here.your content here.your content here.your content here.your content here.your content here.your content here.your content here.your content here.your content here.your content here.your content here.your content here.your content here.your content here.your content here.your content here.your content here.your content here.your content here.your content here.your content here.your content here.your content here.your content here.your content here.
</div>
</div>
</body>
</html>
渲染:http://cgi.ebay.co.uk/ws/eBayISAPI.dll?ViewItem&item=160653524585#ht_500wt_1156
eBay 上的居中页面示例:http://stores.ebay.co.uk/Argos-Outlet(已检查代码,似乎使用了与下面建议的代码相同的代码,但仍然无法使其正常工作。
【问题讨论】:
-
如果您没有背景图片,则不需要背景位置。它没有达到您的预期。
-
eBay 链接与此有什么关系?您只是想提高该项目的点击率吗?
-
埃文,起初我也持怀疑态度。但是,如果您低头查看“完整描述”区域,您会注意到凯利正试图将这些元素放置在该描述的中心。
标签: html css internet-explorer-7 alignment center