Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm putting an img tag in a document without knowing the width/height of the corresponding image:

<img src="/myimage.png" />

I want to use CSS to scale the image to exactly half of its "native" size (the size of the underlying image). I can't figure out how to do this.

  • Using width: 50% would size relative to the containing block, not the image.
  • I can't size to a specific pixel width because I don't know the image size.
  • Since I only need to support WebKit, I've tried using a transform:

    -webkit-transform: scale(0.5);
    

    This adjusts the image nicely, but doesn't resize the size of the image element itself.

  • @Radagaisus suggests using Javascript, which is a good fallback. However this is on an ultra lightweight mobile page so I can't use jQuery, and dealing with all the onload() handlers manually would be a pain.

As a postscript: why I am doing this? Because I need to handle the Retina display. I can detect it using devicePixelRatio and fill in larger (2x) images, but I need to scale them down to 50% to look correct on the display.

share|improve this question
What if you use both -webkit-transform: scale(0.5); and width: 50%;? – Zach Rattner Oct 8 '11 at 20:41
@ZachRattner No, unfortunately that still sizes to half the containing block. – Adam Ernst Oct 8 '11 at 20:43
you can't use JS? – CamelCamelCamel Oct 8 '11 at 20:48
@Radagaisus That's my fallback, but this is an ultra-lightweight mobile page so I can't use jQuery, and dealing with all the onload handlers manually is a real pain. – Adam Ernst Oct 8 '11 at 20:52
3  
If it's meant to be ultra lightweight, why scale images down with CSS instead of reduce their actual size? Are you "zooming them in" to full size at some point? – Wesley Murch Oct 8 '11 at 20:56
show 2 more comments

4 Answers

up vote 8 down vote accepted

It's somewhat weird, but it seems that Webkit, at least in newest stable version of Chrome, supports Microsoft's zoom property. The good news is that its behaviour is closer to what you want.

Unfortunately DOM clientWidth and similar properties still return the original values as if the image was not resized.

See live demo at http://jsbin.com/esucat/edit#html,live

share|improve this answer
1  
Wow, perfect. A momentary rant: I can't believe that CSS doesn't have a way to do this easily. Ugh. – Adam Ernst Oct 8 '11 at 21:03
+1 you learn something random every day ;) I'd no idea other browsers would ever adopt zoom... v. strange. – pebbl Sep 26 '12 at 17:04

The zoom property sounds as though it's perfect for Adam Ernst as it suits his target device. However, for those who need a solution to this and have to support as many devices as possible you can do the following:

<img src="..." onload="this.width/=2;this.onload=null;" />

The reason for the this.onload=null addition is to avoid older browsers that sometimes trigger the load event twice (which means you can end up with quater-sized images). If you aren't worried about that though you could write:

<img src="..." onload="this.width/=2;" />

Which is quite succinct.

share|improve this answer
1  
Wish I could up-vote more! I'm trying to get dynamic images (which never get written to disk) resized for Retina - this was the perfect solution. Plus I like that it doesn't use any CSS hacks... – David Oct 4 '12 at 23:29

The following code works for me:

.half {
    -moz-transform:scale(0.5);
    -webkit-transform:scale(0.5);
    transform:scale(0.5);
}

<img class="half" src="images/myimage.png">
share|improve this answer
3  
See my third bullet point. This resizes the image itself, but if you put it in the flow of some text, there will be whitespace all around the image since the element itself is still full-size. – Adam Ernst Oct 8 '11 at 20:45
test of your code: 50.17.204.145/random-stuff/scale-image.php (best solution yet, but it still have the full image area around it) – ulvund Oct 8 '11 at 20:51

This should work:

img {
    max-width: 50%;
    height: auto;
}
share|improve this answer
It will take 50% width of wrapper block – FAngel Sep 26 '12 at 17:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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