在我的网站上,我有一个搜索结果表。它在 Firefox 和 Chrome 中居中对齐,但在 IE9 中不居中。我正在使用以下条件 CSS,但显然它不起作用,它在 IE9 中仍然左对齐。
<!--[if IE 9]>
<style type="text/css">
.ie9fix {
width: 75%;
position: absolute;
margin-left: auto;
margin-right: auto;
float: center;
}
</style>
<![endif]-->
我需要在我的代码中进行哪些更改才能使表格中心对齐?