为什么我不能一起使用背景图像和渐变?

时间:2015-03-30 09:57:19

标签: html css

您好我想使用背景作为半页图像和半页渐变效果与CSS。我在这里这样做我给你css代码和HTML代码,但它不起作用。

HTML

<div class="inner-pp-15">
    Here I am using image
</div>

CSS

.party-page-15 {
    padding: 20px;
    margin:  0px;
    height:  100%;
    width:   100%;
    background-image: url('../img/party-page.jpg') cover    ;
    background: -moz-linear-gradient(left, rgba(158,0,89,1) 0%, rgba(226,93,168,0) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(158,0,89,1)), color-stop(100%,rgba(226,93,168,0))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(left, rgba(158,0,89,1) 0%,rgba(226,93,168,0) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(left, rgba(158,0,89,1) 0%,rgba(226,93,168,0) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(left, rgba(158,0,89,1) 0%,rgba(226,93,168,0) 100%); /* IE10+ */
    background: linear-gradient(to right, rgba(158,0,89,1) 0%,rgba(226,93,168,0) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9e0059', endColorstr='#00e25da8',GradientType=1 ); /* IE6-9 */
}

怎么可能?

0 个答案:

没有答案