Take a look at the following HTML and CSS.

.box {
    border-radius: 15px;
    border: #333 solid 3px;
    background: #333;
}
<div class="box">Hello world</div>

It produces this in Firefox:

enter image description here

As you can see, the border and the background of the div leaves a tiny gap which is visible. I need the border because of a hover state with a different background-color.

How can I overcome this?

link|improve this question

1  
What browser are you using? – Andrew Jackman May 14 '11 at 10:44
1  
It never occured to me that this only happens in Firefox (4). Safari, Chrome, and Opera don't show this behaviour. Is there a way to fix this for FF? – Kriem May 14 '11 at 10:47
I see this too on windows machines in chrome... It is a chrome bug, of antialiasing engine of chrome in windows. – Roki May 14 '11 at 10:48
have you tried with browser-specific rules? -moz-border-radius or -webkit-border-radius? – stecb May 14 '11 at 10:49
I have. Doesn't help I'm afraid. – Kriem May 14 '11 at 10:50
feedback

1 Answer

up vote 5 down vote accepted

This is most likely a bug in Firefox. You could do a simple trick to solve this problem: (it's not the best solution, I know, but the problem seems to be serious)

markup: a fake border through a 'wrapper' div

<div class="wrapper">
    <div class="box">Hello world</div>
</div>

css: padding does the trick

.wrapper {
    border-radius: 15px;
    background: #333;
    padding:3px; /*simulating border*/
}
.box {
    border-radius: 15px;
    background: #333;
}

http://jsfiddle.net/steweb/peYRf/


OR a more elegant way to solve the problems (without add another div) could be adding a shadow on the box of the same background-color to 'fill' that white horrible stuff i.e.

.box {
    border:3px solid #333;
    border-radius: 15px;
    background: #333;
    -moz-box-shadow:0px 0px 1px #333; /* just on ffox */
}

http://jsfiddle.net/steweb/Sy2rr/

link|improve this answer
Elegant enough. :) Does Mozilla know of this rendering problem btw? – Kriem May 14 '11 at 11:04
The added shadow doesn't even need the blurring. 0px 0px 0px is fine. Love the idea! Thanks! – Kriem May 14 '11 at 11:15
You're welcome Kriem :) ..about Mozilla, honestly I don't know if they are aware about this rendering problem.. I hope so.. btw, I've been doing stuff with css3 for 2 years but I've never noticed this particular weird behaviour. – stecb May 14 '11 at 11:31
feedback

Your Answer

 
or
required, but never shown

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