首页 > 解决方案 > CSS | 背景样式 - 固定在移动设备中不起作用

问题描述

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

我需要将每个图像固定(在第一个图像之后)带有徽标

这是课程,但没有任何效果

.fullfondo {
  height: 100vh; 
  background-repeat: no-repeat; 
  background-attachment: fixed; 
  background-position: center;
}

标签: cssbackground-imagefixed

解决方案


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

.fullfondo:nth-child(n+2) {
  height: 100vh; 
  background-repeat: no-repeat; 
  background-attachment: fixed; 
  background-position: center;  
}

推荐阅读