zoukankan      html  css  js  c++  java
  • 关于overflow: hidden;的一个诡异问题

     1 <!DOCTYPE html>
     2 <html lang="zh">
     3 <head>
     4   <meta charset="UTF-8">
     5   <meta http-equiv="x-ua-compatible" content="ie=edge">
     6   <title>Title</title>
     7   <meta name="viewport" content="width=device-width, initial-scale=1,minimum-scale=1,maximum-sacle=1,user-scalable=no">
     8   <style>
     9     *{
    10       padding: 0;
    11       margin: 0;
    12     }
    13     .test{
    14        102px;
    15       margin-top: 100px;
    16       margin-left: 100px;
    17     }
    18     .test ul{
    19       overflow: hidden;
    20     }
    21     .test ul li{
    22       /*display: block;*/
    23       float: left;
    24       border: 1px solid #000000;
    25     }
    26     .test1{
    27       display: block;
    28        100px;
    29       height: 50px;
    30       line-height: 50px;
    31       background-color: red;
    32       overflow: hidden;
    33     }
    34     .test1 p{
    35       float: left;
    36     }
    37   </style>
    38 </head>
    39 <body>
    40   <div class="test">
    41     <ul>
    42       <li>
    43         <div class="test1">
    44           <p>我发的是</p>
    45         </div>
    46       </li>
    47     </ul>
    48   </div>
    49 </body>
    50 </html>

    给li里面的div设置overflow: hidden就会西湖此案这个问题

    如果去掉overflow: hidden或者给li设置display:block或者display:inline-block就正常,不懂为什么

    下面这个是网上找到的,但是和我遇到的问题还是有差距

    转:https://my.oschina.net/u/214483/blog/663133

    工作中遇到的一个问题,设置inline-block元素的overflow:hidden意外增加元素总体高度。

    描述如下:

    设 A为子容器,B为父容器。

    A设置为inline-block,并且overflow为hidden,A高度为23,B高度为30。

    A设置为block,A高度为23,B高度为23。

    通过stackoverflow找到原因(http://stackoverflow.com/questions/22421782/css-overflow-hidden-increases-height-of-container),摘抄如下:

    Let me explain to you why this is happening.

    According to CSS 2.1 Specs,

    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.

    To explain in simple words,

    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.

    So, in your case the inline-block cell has overflow:hidden (not VISIBLE), so its margin-bottom, the border of cell is at the baseline of the container element container.

    That is why the element cell looks pushed upwards and the height of container appears increased. You can avoid that by setting cell to display:block.

    翻译如下:

     'inline-block'的baseline是其在normal flow中的最后一个line box的baseline,除非它没有in-flow line boxes,或者其‘overflow’属性不等于‘visible’,这种情况下,其baseline位于bottom margin边上。

    解释如下:

    i) 如果inline-block的overflow设为visible(默认属性),则其baseline是当前行的containing block的baseline。

    ii) 如果overflow设为其他,则其bottom margin位于前行的containing block的baseline;

    我们这种情况下,inline-block元素的overlow:hidden,所以元素的底部边框在父元素的baseline。

    因此高度才会看起来增加了。

    可以将inline-block设为block,即可解决问题。

  • 相关阅读:
    BSP与HAL关系(转)
    [Advanced Algorithm]
    [Advanced Algorithm]
    [Advanced Algorithm]
    [Intermediate Algorithm]
    [Intermediate Algorithm]
    [Intermediate Algorithm]
    [Intermediate Algorithm]
    [Intermediate Algorithm]
    [Advanced Algorithm]
  • 原文地址:https://www.cnblogs.com/zhaobao1830/p/7362003.html
Copyright © 2011-2022 走看看