0

我目前有一个图像网格,可以根据窗口和容器的大小适当缩放。

http://jsfiddle.net/AndyMP/2zND2/13/

到目前为止,我已经尝试并未能在不破坏现有结构的情况下将 DIV 包裹在图像周围。我怎样才能做到这一点?

CSS

#photos {
   /* Prevent vertical gaps */
   line-height: 0;
   width: 100%;
}
#photos img {
  /* Just in case there are inline attributes */
  width: 20%;
  height: auto;
  float:left;
  overflow:hidden;
}

@media (min-width:1200px) {
  #photos img {
  /* 5 images wide */
  width: 19.2% ; margin: 0 1% 1% 0;
  }
  #photos img:nth-child(5n) { margin: 0 0 1% 0; }
}

@media (min-width:800px) and (max-width: 1200px) {
  #photos img {
  /* 5 images wide */
  width: 19.2% ; margin: 0 1% 1% 0;
  }
  #photos img:nth-child(5n) { margin: 0 0 1% 0; }
}

@media (min-width:400px) and (max-width: 800px) {
  #photos img {
  /* 4 images wide */
  width: 24.25% ; margin: 0 1% 1% 0;
  }
  #photos img:nth-child(4n) { margin: 0 0 1% 0; }
}

@media (min-width:300px) and (max-width: 400px) {
  #photos img {
  /* 2 images wide */
  width: 49% ; margin: 0 2% 2% 0;
  }
  #photos img:nth-child(2n) { margin: 0 0 2% 0; }
}

@media (max-width: 300px) {
  #photos img {
  /* 1 image wide */
  width: 100% ; margin: 0 0 2% 0;
  }
}
4

1 回答 1

1

首先,这是应用我将要提到的步骤后您应该得到的最终结果:little link

1)将每个包装img在一个div.

2)添加CSS规则:

#photos div {
    display: inline-block;
}

3)将所有选择器更改#photos img#photos div.

4)添加:

#photos div img {
    width: 100%;
}
于 2012-09-10T18:45:53.440 回答