作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用以下样式创建一个不透明的背景图像(用于整个页面),它会拉伸(stretch)以适应浏览器宽度。我还能让图像垂直重复吗?
我已经尝试过 background-repeat: repeat-y;
但它无法正常工作。
html:after {
content : "";
display: block;
position: absolute;
top: 0;
left: 0;
background-image: url('backdrop.png');
background-size: cover;
width: 100%;
height: 100%;
opacity : 0.2;
z-index: -1;
}
最佳答案
尝试将其添加到 html 中(而不是在 :after 中)。
html {
background: url("backdrop.png") left top repeat-y;
.
.
}
关于html - 背景图像拉伸(stretch)到浏览器宽度并重复 Y 且不透明?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29140734/
我是一名优秀的程序员,十分优秀!