2017-09-01 66 views
0

我在使用pseduo元素的元素上有一个背景图像,但由于某些原因,在IE11中背景图像不显示全角,尽管事实上我有这些CSS设置:在IE11中,SVG伪背景图像不是全角

.page--home__quaternary .form-holder--layout-band-name::after { 
    content: ''; 
    top: 0; 
    right: 0; 
    bottom: 0; 
    left: 0; 
    height: 100%; 
    width: 100%; 
    display: block; 
    background-image: url(../images/new/image.svg); 
    position: absolute; 
    background-repeat: no-repeat; 
    background-size: cover; 
    z-index: -1; 
    background-color: #742d7b; 
    -webkit-border-radius: 1.125em; 
    border-radius: 1.125em; 
    opacity: .75; 
} 

出于某种原因,高度是不错,但它只是不会元素

回答