css 背景图片不变宽高比居中填满容器以及设置背景图片透明度

.bg{

    background-image:url('../../image/mine.png');

    background-position:50%;

    background-repeat:no-repeat;

    background-size:cover;

    //如果还要透明效果加上下面这两行

    opacity:0.3;

    filter:alpha(opacity=30);

}

猜你喜欢

转载自blog.csdn.net/qq_33514421/article/details/81032527