div浮动层,遮罩层屏幕居中(水平垂直居中)CSS代码

来源:互联网 发布:阿里云域名优惠码 编辑:程序博客网 时间:2024/04/30 07:19
.toast{
     width:100px;
     height:100px;
     background:transparent;
     background:rgba(0,0,0,0.5);
     border-radius:8px;
     position: fixed;
     margin:auto;left:0; right:0; top:0; bottom:0;
     z-index: 1;

    }

<div class="toast"></div>

1 0
原创粉丝点击