Why is this inline-block element pushed downward?
Asked Answered
A

8

256

Following is my code and I want to understand that why #firstDiv is being pushed downward by all browsers. I really want to understand the inner workings of the fact that why its being pushed downward rather than pulling it upward by one way or another. (and I know how to align their tops :))

And I know that its overflow:hidden; which is causing it but not sure that why its pushing that div downward.

body {
  width: 350px;
  margin: 0px auto;
}

#container {
  border: 15px solid orange;
}

#firstDiv {
  border: 10px solid brown;
  display: inline-block;
  width: 70px;
  overflow: hidden;
}

#secondDiv {
  border: 10px solid skyblue;
  float: left;
  width: 70px;
}

#thirdDiv {
  display: inline-block;
  border: 5px solid yellowgreen;
}
<div id="container">
  <div id="firstDiv">FIRST</div>
  <div id="secondDiv">SECOND</div>
  <div id="thirdDiv">THIRD
    <br>some more content<br> some more content
  </div>
</div>

http://jsfiddle.net/WGCyu/.

Addie answered 14/2, 2012 at 7:9 Comment(0)
J
380

Basically you have added more clutter in your code which is creating more confusion so first I try to remove clutter which hinders understanding the real issue.

First of all we have to establish that what's the real question? Its that why "inline-block" element is pushed downward.

Now we start to understand it and remove the clutter first.

1 - Why not give all three divs same border width? Let's give it.

2 - Does floating element has any connection with inline-block element being pushed downward? No, it has nothing to do with it.

So, we have removed that div altogether. And you are witnessing same behavior of inline-block element being pushed downward.

Here comes the turn of some literature to grasp the idea of line boxes and how they are lined in the same line esp read last paragraph carefully because there lies the answer of your question.

The baseline of an 'inline-block' is the baseline of its last line box in the normal flow, unless it has either no in-flow line boxes or if its 'overflow' property has a computed value other than 'visible', in which case the baseline is the bottom margin edge.

If you are not sure about baseline then here is brief explanation in simple words.

All characters except 'gjpqy' are written on the baseline you can think of baseline as if you draw a simple horizontal line same as underlining right below these "random characters" then it will be the baseline but now if you write any of 'gjpqy' character(s) on the same line then lower part of these characters would fall below the line.

So, we can say that all characters except 'gjpqy' are written completely above the baseline while some part of these characters are written below the baseline.

3 - Why not check where is the baseline of our line? I have added few characters which show the baseline of our line.

4 - Why not add some characters in our divs too to find their baselines in the div? Here, some characters added in divs to clarify baseline.

Now when you understand about baseline, read the following simplified version about baseline of inline-blocks.

i) If inline-block in question has its overflow property set to visible (which is by default so no need to set though). Then its baseline would be the baseline of the containing block of the line.

ii) If inline-block in question has its overflow property set to OTHER THAN visible. Then its bottom margin would be on the baseline of the line of containing box.

  • First point in detail

Now look at this again to clarify your concept that what's happening with green div. If yet any confusion then here is added more characters close to green div to establish the baseline of the containing block and green div baseline is aligned.

Well, I am now claiming that they have same baseline? RIGHT?

5 - Then why not overlap them and see if they are fit right one on another? So, I bring third div -left: 35px; to check if they have same baseline now?

Now, we have got our first point proved.

  • Second point in detail

Well, after explanation of first point second point is easily digestible and you see that first div which has overflow property set to other than visible (hidden) has its bottom margin on the base line of the line.

Now, you can do couple of experiments to further illustrate it.

  1. Set first div overflow:visible (or remove it altogether).
  2. Set second div overflow: other than visible.
  3. Set both divs overflow: other than visible.

Now bring back your clutter and see if everything is looking to fine to you.

  1. Bring back your floated div (of course there is need to
    increase some width of body) You see it has no effect.
  2. Bring back same odd margins.
  3. Set green div to overflow: visible as you set in your question (that misalignment is due to increase of border width from 1px to 5px so if adjust negative left you'll see there is no issue)
  4. Now remove additional characters I added to aid in understanding. (and of course remove negative left)
  5. Finally reduce body width because we no longer need wider one.

And now we are back to where we started from.

Hopefully I have answered your question.

Jaquelinejaquelyn answered 15/2, 2012 at 7:21 Comment(5)
Thanks for such a great explanation but I didn't get your point "Then its baseline would be the baseline of the containing block of the line." Is it same as baseline of the line as you made clear in second point?Addie
Late response. I just noted the same problem, and I just wanted to thank Gary Lindahl for the NICE explanation.Taster
+1 ntgCleaner Even though I appreciate good answers, Gary Lindahl's is so much to read and I am missing just those few lines where it says 'Solution: XY'Ginnygino
I found this detailed explanation incredibly informative, thank you. I struggled with one concept for a while, and have made an updated Fiddle which might clarify for others.Lascar
Honestly this was a long read and confused me a bit. Once I looked at this page: cssreference.io/property/vertical-align. it was much clearer. Its all about vertical align and you start off with the 'baseline' alignment in relation to the parent <div>. Then you can change it to accommodate the look you want. This applies to inline or table-cell elements.Jehovah
C
346

The default value for vertical-align in CSS is baseline & this rule is also apply with inline-block read this http://www.brunildo.org/test/inline-block.html

Write vertical-align:top in your inline-block DIV.

Check this http://jsfiddle.net/WGCyu/1/

Capricecapricious answered 14/2, 2012 at 7:14 Comment(11)
Have you read my question? I never asked to correct the problem.Addie
@ShawnTaylor: The question title is very misleading. We instinctively read the title then shoot for the code, if there is any. We rarely read the actual text. It's a bad habit but you should probably understand why it happens. :PZennas
@sandeep: regarding your edit then why firstDiv is aligned to top even when vertical-align is removed from itAddie
@sandeep: The link you provided is informative, but it doesn't help on this question since it's not describing the behavior of display:inline-block combined with float:left/right.Cadman
So many hours wasted . . when a simple 5 second google search would have just made all the problems flutter away. . thank you!Signorina
@ThomasMcCabe Hardly; if someone posts a bad answer, it deserves to be downvoted to signal to future viewers that there's something wrong with it, regardless of their good intentions. That said, I don't think this answer ever deserved a downvote; even in its original form, it provided a key piece of the puzzle omitted by the accepted answer - that baseline alignment isn't the only way that elements get vertically aligned, and that if you change the vertical-align property, none of the complexity described in the accepted answer applies.Corporal
Had no idea this was a thing and thankfully this was the first result for the issue on Google. Very informative and concise, thank you.Seize
Apply some margin. It will break this solutionSubjoin
This does not solve the problem. I have an array of drop downs that are all in divs. These divs have inline-block and vertical align top. When I call jQuery.hide() on one of them, they receive the overflow:hidden style, but they cause the container to expand a bit as they're hiding. Essentially, their content is being clipped and then shrunk, so there's no logical reason for the container to be expanding for a brief second as it does now. It's also just bizarre and unexpected in general for an element's baseline to change just because you're hiding overflow. Seems very arbitrary.Asleyaslope
In IE10, you'll need to use vertical-align: text-top; to work!Audacity
I had this issue with bootstrap's d-inline-block class, but only in IE. Using this solution I solved it.Koniology
T
34

Just use vertical-align:top;

Demo

Tugman answered 10/7, 2015 at 9:42 Comment(0)
S
12

I originally started on answering this question, but it was locked as dupe before I could finish, so I post the answer here instead.

First, we need to understand what inline-block is.
The definition in MDN says:

The element generates a block element box that will be flowed with surrounding content as if it were a single inline box (behaving much like a replaced element would)

To understand what's going on here, we need to look at vertical-align, and it's default value baseline.

vertical position visualizations
In this illustration you have this color chart:
Blue: The baseline
Red: The top and bottom of the line-height
Green: The top and bottom of the inline content box.

In the #left element, you do have some textual content that controls what is the baseline. This means that the text inside defines the baseline for #left.
In the #right, there is no content, so the browser has no other option than to use the box bottom as the baseline.

Se this visualisation where I have drawn the baseline on an example where the first inline container has some text, and the next is empty:

Baseline drawn

If you specifically align one element to top, you really say that you align the top of this element to the top of of the line box.

This might be easier to understand by an example.

div {
    display: inline-block;
    width: 100px;
    height: 150px;
    background: gray;
    vertical-align: baseline;
}
div#middle {
    vertical-align: top;
    height: 50px
}
   
div#right {
    font-size: 30px;
    height: 100px
}
<div id="left">
  <span>groovy</span>
</div>
<div id="middle">groovy</div>

<div id="right">groovy</div>

The result is this - and I added the blue baseline, and the red line box: Explained vertical-align
What happens here, is that the height of line box is depended on how the the content of the entire line is laid out. This means that to calculate the top alignment, the basline alignments must be calculated first. The #middle element has vertical-align:top, so this is not used for the baseline positioning. but the #left and #right are positioned vertically so that their baselines are aligned. When this is done, the height of the line box has increased, because the #right element has been pushed up a bit as a result of the larger font size. Then the top position for the #middle element can be calculated, and this is along the top of the line box.

Starfish answered 15/8, 2018 at 10:33 Comment(1)
Working with css over 10 years and had no idea that was a problem. Honestly I still don't fully understand but at least now I know what css line should I add to fix this issue :) You saved my day.Literal
C
9

View this alternative example. The reason for such behavior is described in CSS3 module: line: 3.2. Line Box wrapping [1]:

In general, the start edge of a line box touches the start edge of its containing block and the end edge touches the end edge of its containing block. However, floating boxes may come between the containing block edge and the line box edge. Thus, although line boxes in the same inline formatting context generally have the same inline progression advance (that of the containing block), they may vary if available inline-progression space is reduced due to floats[...]

As you can see, the third element is pushed downward, although it does not have a overflow property. The reason must be somewhere else to find. The second behavior you notice is described in Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification: 9.5 Floats [2]:

Since a float is not in the flow, non-positioned block boxes created before and after the float box flow vertically as if the float did not exist. However, the current and subsequent line boxes created next to the float are shortened as necessary to make room for the margin box of the float.

All your display:inline-block; divs are using a special kind of baseline in this case 10.8 Line height calculations: the 'line-height' and 'vertical-align' properties (very end) [3]:

The baseline of an 'inline-block' is the baseline of its last line box in the normal flow, unless it has either no in-flow line boxes or if its 'overflow' property has a computed value other than 'visible', in which case the baseline is the bottom margin edge.

So when you're using floating elements and inline-block elements, the floating element will be pushed to the side and the inline formatting will be recalculated according to 1. On the other hand, the next elements are shortened if they won't fit. Since you're already working with a minimum amount of space, there's no other way to modify your elements then pushing them 2. In this case, the highest element will define the size of your wrapping div, thus defining the baseline 3, while on the other hand the modification of position and width stated in 2 can't be applied to such minimal spaced maximum height elements. In this case a behavior as in my very first demo will result.

Lastly, the reason your overflow:hidden will prevent #firstDiv to be pushed to the lower edge of your #container, although I couldn't find a reason in section 11. Without overflow:hidden it works as excepted and defined by 2 and 3. Demo

TL;DR: Have a very close look on the W3 recommendations and the implementations in the browser. In my humble opinion floating elements are determined to show unexpected behavior if you don't know all the changes they do to your surrounding elements. Here's another demo which shows a common problem with floats.

Cadman answered 14/2, 2012 at 7:53 Comment(1)
This "standard" is an unbelievable mess. It's amazing they've been able to make this stuff behave consistency across browsers. Oh wait, no, they've never been able to do that.Asleyaslope
A
1

the problem is because you have applied float:left on the second div. which makes the second div to come on the left side and your first div drops and comes after your second div. If you apply float:left on the first div also, your problem will be gone.

overflow:hidden is causing no problem to your layout, overflow:hidden affects only inner elements of a div, it has nothing to do with other elements which are outside.

Anvil answered 14/2, 2012 at 7:27 Comment(5)
Well if its being pushed because it comes second after floated div then why thirdDiv doesn't go downward?Addie
because third div has second div before it which doesn't have float:left;Anvil
But where is this rule mentioned that if some div will come after floated div then it will drop downward? I checked w3.org.Addie
the element which is not floating drops to the baseline and if you had done negative vote than i must say that it was the most logical answerAnvil
No, I didn't vote negative and yes your answer doesn't deserve negative. Just voted upward.Addie
D
1

Try adding padding:0; to the body and removing the margin of your divs.

Add background-color:*any color aside from background* to check the difference.

Diamante answered 19/9, 2017 at 15:47 Comment(1)
Edit the answer to format code , You can format code by adding the symbol ` before starting the code and after ending the code. as code eg: .background-color:any color Lewis
D
0

Try making all CSS properties of all Elements same.

I had similar problem and while fixing this I identified that I was dropping an Element with Font property into Div Element.

After dropping that Element with Font property the alignment of all DIV was disturbed. To fix this I set Font property to all DIV elements the same as the element that is dropped into it.

In the following example, the Dropped element of class ".dldCuboidButton" defined with font-size:30 px.

So I added same property to remaining classes i.e. .cuboidRecycle, .liCollect , .dldCollect which are used by DIV elements. In that way all DIV element follow the same Measurments before and after dropping the element into it.

.cuboidRecycle {
    height:40px; 
    width:'20px; float:right';
    overflow:'none';
    background-color:#cab287;
    color:#ffffff; 
    border-radius:8px; 
    text-align:'center'; 
    vertical-align:'top';
    display: inline-block;
    font-size: 30px; /* Set a font-size */
}


.liCollect {
    height:40px; 
    width:'20px; float:right';
    overflow:'none';
    background-color:#cab287;
    color:#ffffff; 
    border-radius:8px; 
    text-align:'center'; 
    vertical-align:'top';
    display: inline-block;
    font-size: 30px; /* Set a font-size */
}

.dldCollect {
    height:40px; 
    width:'20px; float:right';
    overflow:'none';
    background-color:#009933;
    color:#ffffff; 
    border-radius:8px; 
    text-align:'center'; 
    vertical-align:'top';
    display: inline-block;
    font-size: 30px; /* Set a font-size */
}


.dldCuboidButton {
    background-color:  #7c6436;
    color: white; /* White text */
    font-size: 30px; /* Set a font-size */
    border-radius: 8px;
    margin-top: 1px;
  }

Here is the example of HTML dynamically created using above CSS.

$("div#tabs").append(
  "<div id='" + newTabId + "'>#" + uniqueId + 
  "<input type=hidden id=hdn_tmsource_" + uniqueId + "  value='" + divTmpfest + "'>" + 
  "<input type=hidden id=leCuboidInfo_" + uniqueId + " value=''>" + 
  "<div id='" + divRecycleCuboid + "' class=cuboidRecycle ondrop='removeDraggedCuboids(event, ui)'  ondragover='allowDrop(event)'><font size='1' color='red'> Trash bin </font></div>" +
  "<div id='" + divDropLeCuboid  + "' class=liCollect ondrop='dropForLinkExport(event)'  ondragover='allowDrop(event)'><font size='1' color='red'>Drop Template Manifest Cuboid here</font></div>" +
  "<div id='" + divDropDwldCuboid  + "' class=dldCollect ondrop='dropForTMEntry(event)'  ondragover='allowDrop(event)'><font size='1' color='red'>Drop Template Cuboids here..</font></div>" +
  "</div>" 
);
Desperation answered 4/3, 2018 at 13:57 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.