当我使用我的图像标记助手时,页面上的图像总是小于图像的大小。这是铁路还是东西?即使将图像高度设置为100%,我也无法获得完整尺寸的图像。任何想法??
答案 0 :(得分:0)
最有可能的图像大小是在stylesheet / css中预定义的,看看那里。
或者您可以尝试:image_tag(" /icons/icon.gif" ;,身高:' 32',宽度:' 32')
资源在这里:http://api.rubyonrails.org/classes/ActionView/Helpers/AssetTagHelper.html#method-i-image_tag
答案 1 :(得分:0)
您可以尝试此代码
<img src="img_location" alt="" style="width:100%; Height:100%;"/>
如果您的图像大小由您的css预定义,则它会解决。