vote up 3 vote down star

Let's say I want a way to display just the the center 50x50px of an image that's 250x250px in HTML. How can I do that. Also, is there a way to do this for css:url() references?

I'm aware of clip in CSS, but that seems to only work when used with absolute positioning.

flag

80% accept rate

2 Answers

vote up 8 vote down check

One way to do it is to set the image you want to display as a background in a container (td, div, span etc) and then adjust background-position to get the sprite you want.

This technique is shown on the following url:

http://www.guistuff.com/css/css_imagetech1.html

link|flag
1  
Just to clarify, you’d set the width and height of the container td, div, span or whatever to 50px to make this work. – Paul D. Waite Apr 27 at 8:38
vote up 3 vote down

A List Apart should be in anyones list of sites to visit with HTML/CSS/JS problems:

Here's one way of doing sprites, and here's another using JS.

link|flag

Your Answer

Get an OpenID
or

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