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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T22:50:05+00:00 2026-05-18T22:50:05+00:00

I have a simple HTML page with 3 columns (300px x 100%) that all

  • 0

I have a simple HTML page with 3 “columns” (300px x 100%) that all have a vertical scrollbar. This works fine when having a window of at least 900 pixels in width. However, when I resize the window to be smaller than the columns take, one (or more) of the columns jump down to fit the window vertically. This is not what I want, because it would require the user to scroll all the way down before being able to see the other column.

What I want is pretty simple: a way to force the browser to fit the columns horizontally, even if it doesn’t fit. width: 900px; on the body isn’t a solution I want to use because the number of columns (and their width) is variable.

In other words: how do I force a browser to put my elements horizontally on a page and stop moving elements?

[edit]
My current code (well, it’s not the actual code, but it does show what the problem is):

<!DOCTYPE html>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <style>
            * {
                margin: 0;
                padding: 0;
            }

            body, html {
                height: 100%;
            }

            body {
                overflow-x: scroll;
            }

            .column {
                width: 300px;
                height: 100%;
                float: left;
                overflow-x: hidden;
                overflow-y: scroll;
            }
        </style>
    </head>
    <body>
        <div class="column"></div>
        <div class="column"></div>
        <div class="column"></div>
        <div class="column"></div>
    </body>
</html>
  • 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-18T22:50:06+00:00Added an answer on May 18, 2026 at 10:50 pm
    <!DOCTYPE html>
    <html>
      <head>
        <style>
          * { margin: 0px; padding: 0px; }
    
          body, html { height: 100%; }
    
          body { 
            overflow-x: scroll; 
            white-space: nowrap; // prevent 'text' from wrapping
          }
    
          .column {
            display:inline-block; // make them behave like 'text'
            width: 300px; height: 100%;
    
            overflow-x: hidden; overflow-y: scroll;
          }
        </style>
      </head>
      <body>
        <div class="column"></div>
        <div class="column"></div>
        <div class="column"></div>
        <div class="column"></div>
      </body>
    </html>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this simple HTML page that consists of 4 divs of equal height
I have a simple HTML Table (10 columns x 500 rows). When the page
I have this html page which is very simple, it contains a text box
I have a very simple page that is displaying canned data. I experienced this
I have a simple html page with a div. I am using jQuery to
In a simple html page I have: <SCRIPT> function Clicker(number){ if (number == 1)
I have a simple html form. On php page. A simple list is placed
So I have simple video tag on HTML 5 page playing OGG video. I
I have an HTML page with a simple form. When the user clicks submit,
I have a simple flow: A.html -> B.html -> C.html Now, page B either

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.