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 8411881
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T00:32:15+00:00 2026-06-10T00:32:15+00:00

How can I resize a box or a font-size on window resize? But the

  • 0

How can I resize a box or a font-size on window resize? But the scaling but not exceed the default values set in the css, for instance, in css you might have width:800px; height:600px; for the box.

I want to archive the result similar to this website when you scale your browser, the images, boxes, font-sizes are being scaled too – http://davegamache.com/craftsmanship/

I tested my script but it seems very far from it,

html,

<div class="box">

    <p>I am in a box.</p>

</div>

css,

<style>
        .box {
            width:800px;
            height:600px;
            border:1px solid #000;
        }
    </style>

jquery,

$(document).ready(function(){

            var window_height = $(window).height();

            $(window).resize(function() {

                //$('.box').css({'height':(window_height/2)+'px'});

                $(".box").animate({
                    width: (window_height/2) +'px'
                }, 500 );

            });

        });

demo

I tried to use this plugin but can’t make it worked at all – http://fittextjs.com/

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-06-10T00:32:16+00:00Added an answer on June 10, 2026 at 12:32 am

    You’ll need to get the window height inside the resize function, otherwise it will never change :

    $(function(){
        $(window).on('resize', function() {
            var H = $(window).height();
            $('.box').animate({width: (H/2) +'px'}, 500 );
        });
    });
    

    An easier option would be to use percentages/em etc. in CSS, but for more advanced stuff JS is often needed.

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

Sidebar

Related Questions

How can I resize my application's window when the taskbar's size has changed? For
can I programmatically resize notification to size specify? My code js: var notification =
I am using Progress Dialog box.By default it open on full screen so can
Does anyone know how I can resize a winform when it has no border.
I want to get each circle inside a div so i can resize it
Can i resize images in python to given height and width,i use python 2.5,
How can I resize a JTextField?
How can I resize the height of a ListView depending on how many items
I've loaded a JPG with dimensions 3264x2448 into a Sprite. How can I resize
Question How can I dynamically resize an image in ASP.NET MVC? Background I'm trying

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.