Inline-block element height issue

前端 未结 7 588
星月不相逢
星月不相逢 2020-12-15 07:38

I have a simple example in which an outer DIV contains an inner DIV which has
display: inline-block;.
Because I have set the

7条回答
  •  死守一世寂寞
    2020-12-15 08:26

    The default vertical alignment for inline elements is baseline, so you need to set it to top or middle:

    .outer {
        background-color: red;
    }
    .inner {
        display: inline-block;
        width: 480px;
        height: 140px;
        background-color: green;
         vertical-align:top;
    }

提交回复
热议问题