开发者

Is this a bug with CSS3: Rounded corners with CSS3 gradient

开发者 https://www.devze.com 2023-02-04 09:49 出处:网络
I\'m running into an issue where the border of an outer div with rounded-corners is getting cut-off by an inner element with a CSS3 gradiet. Is this a bug with CSS3 - if so,开发者_高级运维 I\'ll happi

I'm running into an issue where the border of an outer div with rounded-corners is getting cut-off by an inner element with a CSS3 gradiet. Is this a bug with CSS3 - if so,开发者_高级运维 I'll happily submit a bug-report.

If not, how do I fix this?

Source & Demo here: http://jsfiddle.net/joshuamcginnis/2aJ8X/

Screenshot:

Is this a bug with CSS3: Rounded corners with CSS3 gradient


The problem isn't the gradient - give your <h2> element a solid background to see. Instead, you need to round the corners of the <h2> as well as of the wrapping <div>.

Add border-radius: 10px 10px 0 0; and the appropriate vendor-specific versions to the <h2> styling and it all works.


overflow:hidden; does not work

but this does:

h2
{
  position:relative;  
  z-index:-1;
....
}


It's not specific to background gradients. It's just the background of the h2 element overlapping sitting on top of the rounded corners. I'm not sure it's a bug in the strictest sense, but it is fairly well known. Easiest 'fix' is rounding the corners of the element with the background. Example: just setup for chrome

0

精彩评论

暂无评论...
验证码 换一张
取 消