Zurb响应式图像大小不起作用

时间:2013-01-22 15:19:32

标签: responsive-design image-resizing zurb-foundation

我使用zurb,我有1行和4列,我在这4列中有4个图像。 图像的大小并不相同,因此在获得100%锐度的图片之前,我必须为它们分配宽度和高度。

我想问一下我必须使用哪个类以及如何在我缩小浏览器窗口大小的同时使我的图像响应(比率),以及那些响应的列大小?

这是我的代码:

<div class="row">
   <div class="three columns">
      <img src="something.jpg" style="width:220px; height:200px;" />
   </div>
   <div class="three columns">
      <img src="something.jpg" style="width:223px; height:190px;" />
   </div>
   <div class="three columns">
      <img src="something.jpg" style="width:210px; height:150px;" />
   </div>
   <div class="three columns">
      <img src="something.jpg" style="width:210px; height:195px;" />
   </div>
</div>

我不使用内联CSS,它只是宽度和高度的一个例子。

谢谢。

1 个答案:

答案 0 :(得分:3)

我以某种方式将这部分评论在.css:

/* line 45, ../../../../../../../../Library/Ruby/Gems/1.8/gems/zurb-foundation-3.0.4/stylesheets/foundation/grid.scss */
img, object, embed {
  max-width: 100%;
  height: auto;
}

有了这个我的图像响应。