Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

CSS3: Transparent Rounded Corner Problem

Tags:

html

css

xhtml

Site is located here: CLICK TO VIEW THE WEBSITE

Here is an image of the problem: alt text

As you can see, using CSS3 border-radius, and background: transparent I was able to make what looks like a "cutout" from the div. The problem should be obvious that the corners are transparent as well.

I know I could just use an image and problem would be solved, but I want to use CSS3. I think there is probably some ingenious way to get around this problem, but I am not thinking of it. I do want to note that I am using css3pie.com to allow IE6 through IE8 CSS3 functionality.

like image 347
ParoX Avatar asked Nov 15 '22 08:11

ParoX


1 Answers

This is a bit hacky

This rules apply to the p tag

-webkit-box-shadow: #A3AFC6 0px -4px 0px 3px;
like image 177
Gilsham Avatar answered Dec 04 '22 07:12

Gilsham