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

  • Home
  • SEARCH
  • 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 9009869
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T02:18:44+00:00 2026-06-16T02:18:44+00:00

I apologize if the question isn’t phrased correctly or clear. Let me explain. I

  • 0

I apologize if the question isn’t phrased correctly or clear. Let me explain.

I have 4 divs inside the middle div. Is meant to look like below:

 --------------  -----------   -------------
|custExpBox    || techSumBox| |escalationBox|
 -------------  |           |  -------------
 -------------- |           |
|workaroundnBox||           |
 -------------   -----------

But instead i get:

 -------------   -----------   -------------
|custExpBox    || techSumBox| |escalationBox|
 -------------  |           |  -------------
                |           |
                |           |
 -------------  -----------
|workaroundBox|
 -------------

Here’s a stripped down version of html code code:

<div id="middle">
    <div id="custExpBox"></div>          
    <div id="techSumBox">  </div>
    <div id="escalationBox"> </div>
    <div id="workaroundBox"> </div>
</div>

CSS code:

#middle{

    width:100%;
    margin-top:16px;
    margin-bottom: 5px;
    display:inline-block;
    border:1px dashed black;
}

#custExpBox{

    display: inline-block;
    float:left;
    width:40%;
    background-color:#EAF2D3;
    line-height:17px;
    padding:3px;
    height:200px;
    overflow:scroll;

}

#techSumBox{

    display: inline-block;
    float:left;
    width:30%;
    background-color:#EAF2D3;
    line-height:17px;
    padding:4px;
    height:406px;
    overflow:scroll;
    border:1px solid black;
    overflow:auto;
}

#escalationBox{

    margin-top:16px;
    display: inline-block;
    float:right; 
    width:18%;
    border:1px solid black;
    background-color:#E9EBA9;
    line-height:17px;
    border-radius:5px;  
    padding:4px;
}

#workaroundBox{
   display: inline-block;
   float:left;
   width:40%;
   background-color:#EAF2D3;
   line-height:17px;
   padding:3px;
   height:198px;
   overflow:scroll;
   margin-top:6px;  
}

Appreciate the help. thanks!

EDIT 1:
Thought I’d let you know that if I change the height of techSumBox div to the same size as custExpBox it appears as desired. The issue is when the height is greater than the custExpBox div.

  • 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-16T02:18:47+00:00Added an answer on June 16, 2026 at 2:18 am

    EDIT 1

    This solution does not require a wrapper div. Maybe this will work better for you.

    The HTML just needs to be rearranged and the CSS updated.

    HTML

    <div id="middle">
        <div id="escalationBox">escalationBox</div>
        <div id="custExpBox">custExpBox</div>
        <div id="workaroundBox">workaroundBox</div>    
        <div id="techSumBox">techSumBox</div>
    </div>​
    

    CSS

    #middle{
    
        width:100%;
        margin-top:16px;
        margin-bottom: 5px;
        display:inline-block;
        border:1px dashed black;
    }
    
    #custExpBox{
    
        display: inline-block;
        float:left;
        width:40%;
        background-color:#EAF2D3;
        line-height:17px;
        padding:3px;
        height:50px;
        overflow:scroll;
    
    }
    
    #techSumBox{
    
        width:30%;
        background-color:#EAF2D3;
        line-height:17px;
        padding:4px;
        height:300px;
        overflow:scroll;
        border:1px solid black;
        overflow:auto;
    }
    
    
    #escalationBox{
    
        margin-top:16px;
        float:right;
        width:18%;
        border:1px solid black;
        background-color:#E9EBA9;
        line-height:17px;
        border-radius:5px;  
        padding:4px;
    }
    
    #workaroundBox{
       display: inline-block;
       float:left;
       clear:left;
       width:40%;
       background-color:#EAF2D3;
       line-height:17px;
       padding:3px;
       height:198px;
       overflow:scroll;
       margin-top:6px;  
    }​
    

    EDIT 0

    This updated example resembles your ascii example. The two left divs just required width:100%; to span the entired left div container.


    If you combine the two divs on the left you can obtain the desired result. Example here: http://jsfiddle.net/HFPF9/.

    So, a new div containing the two left divs:

    HTML

    <div id="Left">
        <div id="custExpBox">custExpBox</div>          
        <div id="workaroundBox">workaroundBox </div>        
    </div>
    

    CSS

    #Left {
        float:left;
        width:40%;
    }
    

    Then workaroundBox will need to clear: left; in order to stack correctly.

    All Code

    HTML

    <div id="middle">
        <div id="custworkHolder">
            <div id="custExpBox">1</div>
             <div id="workaroundBox">2</div> 
        </div>
        <div id="techSumBox">3</div>
        <div id="escalationBox">4</div>
    </div>​
    

    CSS

    #middle{
        width:100%;
        margin-top:16px;
        margin-bottom: 5px;
        display:inline-block;
        border:1px dashed black;
    }
    
    #Left {
        float:left;
        width:40%;
    }
    
    #custExpBox{
        display: inline-block;
        float:left;
        width:100%;
        background-color:#EAF2D3;
        line-height:17px;
        padding:3px;
        height:200px;
        overflow:scroll;
    }
    
    
    #techSumBox{
        display: inline-block;
        float:left;
        width:30%;
        background-color:#EAF2D3;
        line-height:17px;
        padding:4px;
        height:406px;
        overflow:scroll;
        border:1px solid black;
        overflow:auto;
    }
    
    
    #escalationBox{
    
        margin-top:0px;
        display: inline-block;
        float:right; 
        width:25%;
        border:1px solid black;
        background-color:#E9EBA9;
        line-height:17px;
        border-radius:5px;  
        padding:4px;
    }
    
    #workaroundBox{
       display: inline-block;
       float:left;
       clear: left;
       width:100%;
       background-color:#EAF2D3;
       line-height:17px;
       padding:3px;
       height:198px;
       overflow:scroll;
       margin-top:6px;  
    }​
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Silverlight newbie here, so I apologize if this question isn't even worded correctly. I
I'm a total beginner so I apologize if this question is elementary. I have
I apologize for the newb question but have not found a solution online. I
I apologize ahead of time if this code isn't formatted correctly, trying to paste
I apologize in advance for this somewhat ignorant question, but I have researched this
Apologies if the question isn't clear but I couldn't think of another way to
I apologize in advance as this question isn't directly related to a coding problem
I apologize if this isn't the best place to ask this question, but hopefully
I apologize in advance for the wording of the question... I have a table
I apologize that this isn't a question on how to use Mathematica, but rather

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.