背景透明度设置

效果展示:
在这里插入图片描述
首先給表单外加一个div

<div class="aa-login">
</div>

然后給表单设置样式

<style scoped>
.aa-login {
    
    
    position: absolute;
    left: 50%;
    top: 50%;
    width: 350px;
    margin: -190px 0 0 -175px;
    border-radius: 5px;
	//设置透明度 background: rgba最后一个是设置透明的可以设置0.1-0.9
    background: rgba(255, 255, 255,0.5);

    overflow: hidden;
}


猜你喜欢

转载自blog.csdn.net/jq1223/article/details/114627161