如何将图像设置为所需的大小

时间:2013-07-26 12:03:54

标签: image twitter-bootstrap image-resizing

我正在使用twitter bootstrap。

<img id="profileImage"
        data-src="holder.js/300x200" src="${picurls}">

现在的问题是,当我上传图片时,img区域会更改为上传的图片大小。 我想要一个修复图像区域,每个图像showld在该框内调整。

2 个答案:

答案 0 :(得分:-1)

其中有问题,请尝试按照以下代码块进行操作

在你的img标签中添加一行。
style =“width:300px; height:200px;

答案 1 :(得分:-1)

<ul class="thumbnails">
  <li class="span4">
      <img id="profileImage" data-src="holder.js/300x200" src="${picurls}">
  </li>
  ...
</ul>

Twitter引导程序使用12列网格,因此span4告诉图像具有页面宽度的4/12(或它所在的容器)。