FlyingCat
FlyingCat

Reputation: 14250

IE text align property bug

I am trying to make the title image align to left. The image align to left in FF and chrome but stay in center in IE. I have searched internet and it appears this is an IE bug. I was wondering if anyone here can help me about it. Thanks a lot.

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;

    }

Upvotes: 0

Views: 772

Answers (1)

mgraph
mgraph

Reputation: 15338

i think <header> is not supported by IE it's HTML5 tag, so in your css just do this:

#title{
    text-align:left;
    }

no need to add header id are unique

Upvotes: 1

Related Questions