最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Fixed image width and height but the height to be cut - Stack Overflow

programmeradmin0浏览0评论

I just noticed in vk that the images in your album have fixed width but the height is also fixed but images are cut like in the middle.And if i copy the path to the images and view only them they are not cut.

i make this photo to be more easy to understand

How this is done ?

I just noticed in vk. that the images in your album have fixed width but the height is also fixed but images are cut like in the middle.And if i copy the path to the images and view only them they are not cut.

i make this photo to be more easy to understand

How this is done ?

Share Improve this question asked Mar 6, 2012 at 0:44 BenBen 1,92410 gold badges31 silver badges47 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 8

Their containers have a fixed height with overflow:hidden set.

HTML:

<ul>
<li><img src="//lorempixel./100/100/"></li>
<li><img src="//lorempixel./100/200/"></li>
<li><img src="//lorempixel./100/300/"></li>
<li><img src="//lorempixel./100/400/"></li>
</ul>​

CSS:

li { float:left; height:100px; overflow:hidden; margin:10px; }

Demo: jsfiddle/tbedf

The images can be put in a container div that has a fixed height and then set the container div to overflow: hidden. This will clip any child objects that are larger than the container. The clipping is at display time only, the images themselves remain unchanged.

You can see an example of an image containing div where you can toggle the overflow settings between hidden and visible in this demo: http://jsfiddle/jfriend00/npzjn/.

发布评论

评论列表(0)

  1. 暂无评论