我正在尝试使标题图像左对齐。图像在 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;
}