English 中文(简体)
无扭曲地重换不同大小的图像大小
原标题:Re size different images without distortion

所有图像都有一个共同点; 它们都是300或600 像素宽的。 但高度不尽相同, 大约为300- 900 像素。 现在我需要一组图像, 用来向用户建议其他图像。 这些图像只大约100x200像素( 可能改变) 。 我上次尝试让图像缩入100x200的像素宽比。 我需要将其重叠, 但多余的图像被隐藏 。

最佳回答

尝试这样的东西"http://dabblet.com/gist/2769112" rel="noreferrer" >http://dabblet.com/gist/2769112

您需要的 CSS 很简单

.img-container {
    width: 200px; /* whatever set width */
    height: 100px;
    display: inline-block; /* or you could float them */
    overflow: hidden;
}
.img-container img {
    width: 100%;
}
问题回答

将图像放入一个包装元素,如DIV, 带有定义的高度和宽度, 并使用 < code> overflow: hidden 。





相关问题
CSS working only in Firefox

I am trying to create a search text-field like on the Apple website. The HTML looks like this: <div class="frm-search"> <div> <input class="btn" type="image" src="http://www....

image changed but appears the same in browser

I m writing a php script to crop an image. The script overwrites the old image with the new one, but when I reload the page (which is supposed to pickup the new image) I still see the old one. ...

Firefox background image horizontal centering oddity

I am building some basic HTML code for a CMS. One of the page-related options in the CMS is "background image" and "stretch page width / height to background image width / height." so that with large ...

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签