IE文本对齐属性错误

时间:2012-05-05 18:02:44

标签: css html5 internet-explorer

我正在尝试使标题图像左对齐。图像在FF和chrome中左对齐但在IE中保持在中心。我搜索过互联网,看来这是一个IE漏洞。我想知道这里是否有人可以帮助我。非常感谢。

HTML

<header>
<div id='title'>
<img src='images/title.png'>  //I want this image align to left in IE
</div>
</header>

CSS

header #title{

    text-align:left;

    }

1 个答案:

答案 0 :(得分:1)

我认为IE不支持<header>的HTML5标记,所以在你的CSS中只需这样做:

#title{
    text-align:left;
    }

无需添加header ID 是唯一的