美文网首页
使用background-attachment:fixed固定背

使用background-attachment:fixed固定背

作者: 訫癡癡 | 来源:发表于2019-07-25 14:46 被阅读0次

解决办法:

body{

width: 100%;

background-image:url('url);

background-repeat: no-repeat;

background-position: center;

background-attachment: fixed;

z-index: -1;

}

兼容性:

body:before {

content: ’ ';

position: fixed;

z-index: -1;

top: 0;

right: 0;

bottom: 0;

left: 0;

background: url('url) center 0 no-repeat;

background-size: cover;

}

相关文章

网友评论

      本文标题:使用background-attachment:fixed固定背

      本文链接:https://www.haomeiwen.com/subject/rdjhrctx.html