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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T13:09:45+00:00 2026-06-09T13:09:45+00:00

Is there a way to, without tables, get three or four elements to align

  • 0

Is there a way to, without tables, get three or four elements to align with each other like this:

http://i.imgur.com/fvPQw.png

I ask this because currently I am using tables, but the tables are refusing to allow me to make the “test” box a specific height, and make filler be the one that actually fills in the space. Currently, it will only allow filler to have a specified height, and requires that the “test” box fill in all remaining space. If you can find a way for me to set the height of the bottom row of a table, then I will accept that as an answer too, but I figured the best way to do this would probably be with css layouts

  • 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-09T13:09:47+00:00Added an answer on June 9, 2026 at 1:09 pm

    Yes. You can use a series of divs to mimic a table-like layout like in your screenshot.

    For example, your HTML layout would be something like this:

    <div class="header"><p>Top bar</p></div>
    <div class="wrapper">
        <div id="leftCol">
            <div id="topLeft">Top Left</div>
            <div id="centerLeft">Filler</div>
            <div id="bottomLeft">Test</div>
        </div>
    
        <div id="rightCol">
            <p>SPAM!</p>                
            <div class="clear"></div>
        </div>
    </div>​
    

    Then you’d apply styling like so:

    .clear {
        clear: both;
    }
    
    
    #leftCol {
        float: left;
        width: 300px; /* explicit width on left column */
    }
    
    #topLeft {
        height: 100px; /* arbitrary height of top left spot; do not define for auto-sizing */
    }
    
    #centerLeft {
        height: 50px; /* another arbitrary height */
    }
    
    #bottomLeft {
        height: 200px; /* another arbitrary height */
    }
    

    ​

    I’ve made a JSFiddle as an example. Basically you’re floating your “left column” on the left and letting your content exist on the right.

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

Sidebar

Related Questions

Is there a way to use the HAVING clause in some other way without
Is there a way to manipulate the mouse position without using System.Windows.Forms.Cursor? Something like
Is there a way to get the count of rows in all tables in
Is there a way without using extra space to find LCA of nary tree.
Ok, two arrays: $first = array(1,2,3,4,5,6,7,8,9,10); $second = array(1,2,3,4,5); Is there a way (without
Is there a Python way without using a subprocess to clone a git repository?
Is there an easy way (without downloading any plugins) to connect to a MySQL
Is there a way to init a list without using square bracket in Python?
Is there any way to hide Summary for CListView without loosing pagination. By summary
Is there any way to execute two bash scripts without the first one blocking?

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.