I have two DIVs one inside another.
<div class="outside">
<div class="inside"></div>
</div>
The outside div has padding of 20px. The inside div has a lot of content and is scrollable. Is it possible to use CSS3's gradient(alpha?) feature to make the top and bottom of the inside div fade into the outside div when scrolling?
or do I have to use a transparent background image to achieve this?