I have a page setup that looks similar to this:

<body>
    <div id="wrapper">
        <!--- ... content ... -->
    </div>
</body>

The body has a background color and a tiling image that adds some noise and grain to the background. On top of that, #wrapper has a linear gradient as background that goes from rgba(0,0,0,.3) to rgba(0,0,0,0) and the gradient expands over 24 pixels at the top of the div, which is at the top of the page --- to add a shadow.

My problem is, that the color that the background of #wrapper holds after the 24 pixel gradient is done, is not true transparency, even though the end color of the gradient has an alpha value of zero. What this leaves me with, is a not true transparent background on #wrapper, that leaves a visible "split-line" on the body-background at the spot where #wrapper stops.

How do I get the gradient to go in to full transparency? I would guess an alpha value of zero would do this. Also, using the transparent keyword doesn't solve it either.

Update

I have added pictures to show the problem. The first picture is the actual look, and the second significantly shows where the line is, because it's there, though very unclear on the first picture.

actual look enter image description here

As you can see, the gradient doesn't go in to true transparency. Not when the to-color is specified as rgba(0,0,0,0) or transparent.

-- Chris Buchholz

link|improve this question

75% accept rate
Can you show us your css code for wrapper? This might seem obvious, but did you add a box-shadow to #wrapper? – Duopixel Feb 11 '11 at 22:09
and uploading a screenshot of what's happening is very handy too. Also what browser/device? – Michael Mullany Feb 11 '11 at 22:58
1  
It would help if you provided the CSS code for your gradient, a rendering of what happens and a mockup of what you want to happen. – Lea Verou Feb 12 '11 at 13:05
Why don't you just add a box-shadow? It sounds like that is what you really want anyway. – oif_vet Aug 6 '11 at 22:59
feedback

2 Answers

Are you testing it in a webkit browser (chrome/safari), firefox, IE or Opera? As they all treat gradients differently.

I don't fully understand though I believe you should consider using CSS gradient generators online, most of them use solid colors, just replace the hex decimal with the new RGBA().

That's the best way to learn how you're going wrong.

Other then that If you've defined opacity on the wrapper div that could be the Issue.

That's the best I can do

link|improve this answer
I'm testing in both Safari, Google Chrome and Firefox. Problem is the same. I need a shadow in the top of the page that goes from black to transparent. The body of the page has a background-image, so I need the gradient (the shadow) to go transparent and not just end in a color. When using transparent or RGBA, I'm not getting true transparency. I have added pictures to the post, to show the problem. – chrisbuchholz Feb 17 '11 at 20:38
feedback

i had the same kind of problem... and realized it was because i was saving the images as jpg's. you need something that supports transparency.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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