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.

Chrome and Safari are displaying a border around the image, but I don't want one. There is no border in Mozilla. I've looked through the CSS and HTML, and I can't find anything that is fixing it.

Here is the code:

<tr>
  <td class="near">
    <a href="../index.html"class="near_place">
      <img class="related_photo" />
      <h4 class="nearby"> adfadfad </h4>
      <span class="related_info">asdfadfadfaf</span>
    </a>
    ...

CSS:

a.near_place {
    border: none;
    background: #fff;
    display: block;
}

a.near_place:hover{
    background-color: #F5F5F5;
}

h4.nearby {
    height: auto;
    width: inherit;
    margin-top: -2px;
    margin-bottom: 3px;
    font-size: 12px;
    font-weight: normal;
    color: #000;
    display: inline;
}

img.related_photo {
    width: 80px;
    height: 60px;
    border: none;
    margin-right: 3px;
    float: left;
    overflow: hidden;
}

span.related_info {
    width: inherit;
    height: 48px;
    font-size: 11px;
    color: #666;
    display: block;
}


td.near {
    width: 25%;
    height: 70px;
    background: #FFF;

}

Sorry, I copied some old code before. Here is the code that is giving me trouble

Thanks in advance

share|improve this question
In response to your code edit (which makes both answers provided so far irrelevant): is this border "dotted"? – thirtydot Jan 20 '11 at 3:36
nope, just a solid thin border. It's not black though, its a lightish grey – golf_nut Jan 20 '11 at 3:37
1  
If your code is as you say it is (complete with border: none;), then I can't see what the problem could be. Are you sure you aren't using some old cached version? – thirtydot Jan 20 '11 at 3:45
This shouldn't matter, but you're missing a space between the quote and the word class. In other words <a href="../index.html"class="near_place"> should be <a href="../index.html" class="near_place"> – Jared Jan 20 '11 at 3:58
Have you tried it with a src in the <img/> tag? I fired up a test.html in chrome and with an image it looks fine. Without the src though it shows a white box with a gray border. I believe your answer lies below (see sarcastyx). – Brett Pontarelli Jan 20 '11 at 4:58

5 Answers

up vote 21 down vote accepted

Now I don't know if this is a bug with Chrome or not but the grey border appears when it can't find the image, the image url is broken or as in your case the src isn't there. If you give the image a proper URL and the browser finds it then the border goes away. If the image is to not have a src then you will need to remove the height and width.

share|improve this answer
I'm with a similar problem, I'm using a sprite with background-position and background-image. If I remove the width and the height, the image just vanish. – Michel Jan 8 at 14:48
1  
@MichelAyres for a sprite you will need to give it a height and width and will need to look at the code to figure out what is happening. I would recommend asking your own question and posting the defective code so that we can give you more help with this. – sarcastyx Jan 8 at 23:10

sarcastyx is right, but if you want a workarround you can set the width and height to 0 and a padding to make space for your image.

If you want a icon of 36x36, you can set width and height to 0 and pading:18px

share|improve this answer
Thanks; this helped me a ton, Gonzalo! – SoreThumb Dec 21 '12 at 21:13
img.related_photo {
  width: 80px;
  height: 60px;
  **border: solid thin #DFDFDF;** //just remove this line
  margin-right: 3px;
  float: left;
  overflow: hidden;
}
share|improve this answer
Sorry, I copied some old code before. Here is the code that is giving me trouble – golf_nut Jan 20 '11 at 3:31

Inside img.related_photo, you need to change border: solid thin #DFDFDF; to border: 0.

share|improve this answer
While border: 0 technically works, the correct way to do it is with border: none because border: 0 implies that there is still a border, but it's width just happens to be 0 so you don't see it. – Jared Jan 20 '11 at 4:00
@Jared: Same difference? – thirtydot Jan 20 '11 at 4:01

This may happen when the image is planted dynamically by css (e.g. by http://webcodertools.com/imagetobase64converter) in order to avoid extra HTTP requests. In this case we don't want to have a default image because of performance issues. I've solved it by switching from an img tag to a div tag.

share|improve this answer

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.