我正在尝试使标题图像左对齐。图像在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;
}
答案 0 :(得分:1)
我认为IE不支持<header>
的HTML5标记,所以在你的CSS中只需这样做:
#title{
text-align:left;
}
无需添加header
ID 是唯一的