Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

HTML:

<html>
<body>

<header>
    <img class="logo" />
</header>

</body>
</html>

CSS:

* {
    margin:0px;
    padding:0px;
    border:none;
}

img.logo {
    width:126px;
    height:50px;
    background-image:url('images/logo.png');
}

One way or another everytime i try to style an IMG like this a strange border appears. Even if I would place border:0px; or border:none; in the img.logo css the border remains.

share|improve this question
1  
<img> tags need a src. – Gio Borje Apr 21 '11 at 10:56
1  
This is not valid html. src and alt are required attributes for the image tag – Vishal Shah Apr 21 '11 at 11:10
That explains a lot thanks. The reason I used the IMG tag is because i find it the most logical tag for an image and it doesnt need a close tag. – Mark Apr 21 '11 at 11:20
1  
IMG is still the most logical tag for displaying an image that is content and not decoration (aka presentation). If your document still makes sense without the image, CSS is preferred. You may want to use an image replacement technique or just use a transparent .png of the logo in an IMG tag, in addition to a background. – Wesley Murch Apr 21 '11 at 11:27

4 Answers

up vote 9 down vote accepted

It's the default "special" border that appears when you use an img element with an a src attribute set to something that doesn't exist (or no src at all).

A common workaround is to set the src to a blank.gif file:

<img class="logo" src="blank.gif" />

I have to point out that it (in this case) makes no sense to use an <img> with background-image. Just set the src attribute and forget about background-image.

share|improve this answer
I have never heard of this and can't reproduce it. Can you possibly give a reference, or is this browser specific? – Wesley Murch Apr 21 '11 at 11:01
Different browsers do behave differently with this. Look at this in Chrome or IE8, for example: jsfiddle.net/6LtfP Irritatingly, the blank.gif I linked to doesn't seem to be transparent. I had to find another version. – thirtydot Apr 21 '11 at 11:10
1  
Wow that is quite interesting, thanks for sharing that. I was aware that FF needs the -moz-force-broken-image-icon to get the icon, but I've never seen how it can be affected in other browsers by using a blank src VS a non existent src VS no src attribute. IE has two icons, which I've never seen, and Chrome didn't display a border on the one with no src attr. Very interesting, thanks. – Wesley Murch Apr 21 '11 at 11:14

Use other tag for this, not img.Use span.

share|improve this answer
1  
How does this answer the question about the border appearing? – Wesley Murch Apr 21 '11 at 10:58

in img.logo{margin:0px;padding:0px;border:none} you have to add the border:none, then it will works.

  • is something refer to the IE browser.so that it wont works our here.
share|improve this answer

note that border:0px is not correct -- zero (0) is zero (0) regardless of the measurement unit so W3C recommends border:0. Also have you tried :

*,
img {
    margin:0px;
    padding:0px;
    border:none;
}
share|improve this answer
2  
border:0px while not recommended perhaps, is still fine. Your selector *, img is redundant as * already selects the img element. – Wesley Murch Apr 21 '11 at 10:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.