Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6370991
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T01:00:08+00:00 2026-05-25T01:00:08+00:00

So I want to scale an image down with css into the size of

  • 0

So I want to scale an image down with css into the size of a container, while maintaining its aspect ratio. It seems easy enough to achieve this when specifying the minimum height OR width, but not both. Any ideas?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T01:00:09+00:00Added an answer on May 25, 2026 at 1:00 am

    Find out if the height is less or the width is less; whichever dimension is less, set that property of the img but not the other. Assuming you aren’t setting the size of the img in CSS, this should maintain the aspect ratio while making the image as large as possible within the constraints of the container. This code assumes your container is a div.

    var height = $('#divImg').Height();
    var width = $('#divImg').Width();
    
    if (height > width)
    {
        $('#divImg img').Width(width);
    }
    else
    {
        $('#divImg img').Height(height);
    }
    

    EDIT:

    If you aren’t using jQuery, you can use the following CSS trick to maintain aspect ratio. Change 100px to the size of your container:

    #divImg img {
        height: 100px;
        width: auto;
    }  
    #divImg img {
        height: auto;
        width: 100px;
    }
    

    Borrowed from CSS styling image height and width while maintaining aspect ratio.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm not after saving an image, I just want to scale down an image
I want to scale an image in C# with quality level as good as
Say I have a BitmapData of 600x600 and I want to scale it down
I'd like to scale a large image down to the width of the user's
which algorithm to use to scale down 32Bit RGB IMAGE to custom resolution? Algorithm
I have canvas element and I want to scale it down, but without changing
For example, I have an 1024*768 JPEG image. I want to estimate the size
I want to display a picture taken by the camera and scale it down
How do you scale down an image until one side reaches it's goal dimension
I want to scale captured image and show it in the picture box which

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.