I have pictures of constant width (i.e. 100px) but with variable height (could be 200px, 130px, ... but height is always >= 100px).

I'm looking for CSS or Javacript code, that can cut the bottom of the picture so that all my pictures will be of size 100x100.

Can this be done, or should I go using some PHP (or other server side language) library?

Thanks in advance!

link|improve this question
feedback

6 Answers

up vote 6 down vote accepted

HTML:

<div id="cutter">
  <img src="..." alt=""/>
</div>

CSS:

div#cutter {
  overflow: hidden;
  width: 100px;
  height: 100px;
}
link|improve this answer
no, it does not resize. it cuts! you have the image inside the div – KARASZI István Aug 5 '11 at 12:05
my mistake :) Thank you – Anna Fr. Aug 5 '11 at 12:06
:) then you can accept if it works for you – KARASZI István Aug 5 '11 at 12:08
AFter using your code, I realize that there are pictures with height < 100, is there a way I can get this height and do something like widht: 100px; height: min(100px, real_size);? – Anna Fr. Aug 5 '11 at 12:47
you can set the div#cutter img { min-height: 100px; } but not all browsers support it – KARASZI István Aug 5 '11 at 12:49
show 1 more comment
feedback

Yes, this can be done using CSS. For example :

<div style="background-image:url('stuff.png');width:100px;height:130px;"></div>
link|improve this answer
1  
width= in css?. – genesis Aug 5 '11 at 12:02
whoops. Edited. – kbok Aug 5 '11 at 12:03
@genesis typos are not grounds for downvotes ... +1 – ilia choly Aug 5 '11 at 12:04
@iliacholy: I did not downvote, I upvoted – genesis Aug 5 '11 at 12:04
@genesis my bad – ilia choly Aug 5 '11 at 12:53
feedback

If you only need the image visually cropped, you could set it as the background image of another element by the desired dimensions.

/* CSS */
.imageContainer {
    display: block;
    width: 100px;
    height: 100px;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: 0px 0px;
}

<!-- HTML -->
<div class="imageContainer" style="background-image: url('path/to/your-image.jpg')"></div>
link|improve this answer
feedback

Try the follwoing:

<div class="cropContainer">
    <img src="yourImageSrc">
</div>

<style>
    .cropContainer{
        overflow:hidden;
        width:100px;
        height:100px;
        display:block;
    }
</style>
link|improve this answer
feedback

You could set the image to be the background of a div which was 100px square. That'd work. Especially if you didn't mind that it just cut the bottom off each time. You could offset the background if you wanted to change where it cut off.

link|improve this answer
feedback

Using the images width/height attributes would scale it, which you don't want. One possibility would be to put each image in a 100x100 div, hiding the overflow. The only problem here is if you have any alt text on the image, it will be cut off.

<div style="width:100px;height:100px;overflow:hidden;>
    <img src="image.jpg">
</div>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.