CSS3 gradient faux column

This is the same effect as the last demo, but using pixel values instead of percent. Notice the syntax difference between webkit and moz—moz requires the px to be included, webkit doesn't want it and considers it implied.

background-image: -webkit-gradient(linear, 350 0, 330 0, from(#FFFFFF), to(#E2DAED), color-stop(.9,#BEBDBF));

background-image: -moz-linear-gradient(370px 0% 180deg,#FFFFFF, #FFFFFF, #BEBDBF 34px,#E2DAED 36px);
/* you must make the moz gradient slightly wider in order to account for the stops narrowing it slightly */