作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
关于website of Nintendo Online是一个后图像,由于 CSS,它上面有一些小点。我也想这样做,但不在图像周围使用 div 容器。
这是我当前的代码:
.image {
background: url(http://nintendo-online.de/img/bg-game-header-cover.png) repeat;
}
<img class="image" src="http://media2.giga.de/2013/06/osx_hero_2x.jpg" height="250" width="500px">
我必须更改什么才能使其可见?如果我将 z-index 设置为 1,图像也会向上一级。有可能吗?
最佳答案
使用 :before
或 :after
div {
background: url(http://media2.giga.de/2013/06/osx_hero_2x.jpg) repeat;
position: relative;
min-height: 200px;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
}
div:before{
content: '';
position: absolute; top: 0; left: 0;
width: 100%;
height: 100%;
background: url(http://nintendo-online.de/img/bg-game-header-cover.png) repeat;
}
<div></div>
关于CSS3 : Creating Dots above a image without a div container,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30182990/
我是一名优秀的程序员,十分优秀!