2012-06-29 63 views
1

我想要div的漸變底色。就像下面的image.Is可能在css3中使用或者應該使用圖像。div的漸變底色

任何幫助appriciated。

回答

0

這將只在元素的底部創建漸變,並且不會與元素的高度一起伸展。它是固定的100px

.style { 
    padding-bottom:100px; 
    background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.1) 100%); /* FF3.6-15 */ 
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 50%,rgba(0,0,0,0.1) 100%); /* Chrome10-25,Safari5.1-6 */ 
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 50%,rgba(0,0,0,0.1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ 
    background-position: center bottom; 
    background-size: 100px 100px; 
    background-repeat: repeat-x; 
}