html - Background inner fade -


i have background image here sidebar. want make background using css, possible?

height of sidebar, changing depending on content <div>

that's why can't use background image.

you can use box-shadow effect.

   background-color:#880600;   -webkit-box-shadow:inset 0px 5px 20px 5px black;   -moz-box-shadow:inset 0px 5px 20px 5px black;    box-shadow:inset 0px 5px 20px 5px black; 

http://jsbin.com/bapawoho/1/

hope helps :)


Comments

Popular posts from this blog

hibernate - How to load global settings frequently used in application in Java -

python 3.x - Mapping specific letters onto a list of words -

objective c - Ownership modifiers with manual reference counting -