如何纠正IE的CSS?

时间:2013-02-01 08:07:14

标签: css internet-explorer

现在我正在处理this site

到目前为止,除了IE之外,它在所有浏览器上看起来都很正常。我不知道为什么在IE他与左边对齐。我怎样才能发现是什么原因造成的?有没有办法检测IE中的CSS有什么问题?!

CSS:

  html,body{
margin:0px;
padding:0px;
text-align:left;
border:0px;
background:#000000 url(/design/wrap_t_bg.jpg) repeat-x;
font-family:Tahoma, Geneva,sans-serif; font-size:11px;
color:#434343;}

3 个答案:

答案 0 :(得分:0)

更改此部分:

html,body{
margin:0px;

要:

html,body{
margin:0px auto;

<强>截图

enter image description here


怪癖模式问题

默认情况下,网站进入怪癖模式。那么,请你把它添加到第一行吗?

<!doctype html>

答案 1 :(得分:0)

将正文中的text-align更改为'center'并在div中覆盖它。

请使用html验证器。代码中有一些可怕的错误。

答案 2 :(得分:0)

有两种方法可以为IE编写css .. 首先是这样的..在HTML页面 定位IE的所有版本

<!--[if IE]>
<link rel="stylesheet" type="text/css" href="all-ie-only.css" />

其他是在css页面上使用回退方法 例子..

html > body #div {
  height: 300px;

}

最好你读这篇文章。 。 http://css-tricks.com/how-to-create-an-ie-only-stylesheet/