CSS |背景样式 - 修复不在移动设备中工作

问题描述 投票:0回答:1

网站:http://www.procolorchile.cl/

我需要将每个图像固定(在第1个之后)与徽标

这是班级,但没有任何工作

.fullfondo {
  height: 100vh; 
  background-repeat: no-repeat; 
  background-attachment: fixed; 
  background-position: center;
}
css css3 background-image fixed
1个回答
0
投票

使用css:nth-​​child(n + 2)

.fullfondo:nth-child(n+2) {
  height: 100vh; 
  background-repeat: no-repeat; 
  background-attachment: fixed; 
  background-position: center;  
}
© www.soinside.com 2019 - 2024. All rights reserved.