Home › Forums › CSS › [Solved] Border radius ugliness › Reply To: [Solved] Border radius ugliness
June 17, 2014 at 2:13 pm
#173013
Participant
I don’t know it, i may only guess:
The “overflow:hidden” red cuts off parts from the border of the .dialog-header (anti-aliasing) and therefore some color from the .dialog “leaks outside”.
You could try to avoid this by using a “hack” like this (to make sure the background of the .dialog-header is 1px larger)
.dialog {
background-clip: content-box;
padding: 1px;
}