I have a div which is a wrapper of my half website and on the left side there’s a category list. The wrapper itself is in grey color.
What I want is that it would switch from grey color to white. Here’s an example image how I’d like it to be:

Is there a solution to this?
EDIT
If it will be of any help here’s my wrapper’s css:
#wrapper{
width: 980px;
margin: 0 auto;
background: #f3f3f3;
}
If I understand you correctly, you’re looking for a way to add a gradient. Below you find the CSS for a gradient going from left to right with the colors
#FFFFFFto#F3F3F3.Please be aware, that gradients haven’t been standardized yet, and many browsers have their own implementiation. This is why there are multiple directives (prefixed -o- for Opera, -moz- for Mozilla, etc.):
Here’s a convenient CSS Gradient Generator