Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to set specific width and height of image (in css), with jquery, but only for first image in one div. Is it posibble?

share|improve this question

3 Answers

up vote 7 down vote accepted

#your_div is refers to div that contains image, may be you've something else.

$('#your_div img:first').css({
   height: 200, // also use '200px' or something other
   width: 200  // '200px' or something other
});

alternative of img:first is img:eq(0).

Read about jQuery :first and :eq()

share|improve this answer
$("#myDiv img:first").width(100).height(100);

Here is JsFiddle example.

share|improve this answer

try with it:

$('#yourDiv img:first-child').css({width:'100px',height:'100px'});
share|improve this answer
The same as the answer from @thecodeparadox, which will default to pixels. – Sam Tyson Jun 1 '12 at 13:22

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.