zoukankan      html  css  js  c++  java
  • [Web 前端] inline-block元素设置overflow:hidden属性导致相邻行内元素向下偏移

    cp from : https://blog.csdn.net/iefreer/article/details/50421025

    在表单修改界面中常会使用一个标签、一个内容加一个修改按钮来组成单行界面,如下所示:

    那么在表单总长度受限的情况下,当中间的邮箱名称过长时,会遮盖到旁边的按钮。

    我们可以把中间邮箱设定最大宽度,然后对于长度超出部分设置overflow: hidden来解决这个问题。

    但是这可能会引发另一个经典的 baseline 对齐问题,也就是本文要讨论的主要问题。

    1. 问题现象

    我们先给出一个在线实例:

    http://wow.techbrood.com/fiddle/15438

    我们可以看到当给中间的 inline-block 元素p添加overflow: hidden属性后,其左右相邻元素被奇怪的向下拉动了一定的距离。

    2. 解决方法

    常用的解决方法是为上述inline-block元素添加vertical-align: bottom。你可以在上面的例子中在线测试下。

    3. 问题原因

    W3的规范对此行为有明确规定:

    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.

    我们从规范中可以知道当一个inline-block元素被设置overflow非visible属性值后,其baseline将被强制修改为元素下外边沿。

    我们知道默认情况下,baseline为字符x的底线位置且vertical-align属性值为baseline。

    此外由于div包含块中只有行内级别的元素,所以将生成一个IFC(行内格式化上下文)来规定其中元素的渲染规则。

    按照IFC布局规则,垂直方向上对齐遵照vertical-align属性(请参考阅读:http://techbrood.com/Guide/h5b2a?p=css-ifc),

    那么p元素两边的2个匿名line box将被迫向下移动一个偏移值来和p元素对齐。

    那么可能有人要进一步追问了,为什么W3要做如此奇怪的规定呢?

    这是因为overflow被设置为非visible值,将使得该inline-block元素中的last line box的渲染处于不确定状态(浏览器可能渲染也可能不渲染),

    这让保持默认规则的baseline也处于不确定状态,那么索性就规定以确定的下外边沿来作为baseline。

    "baseline" -   
    Align the baseline of the box with the baseline of the parent box. 
    If the box does not have a baseline, align the bottom margin edge with the parent's baseline.

    4. 偏移的计算

    上述的向下偏移量,实际上就是inline-block元素的默认baseline和其下外边沿的距离。

    shift = D(descent) part of Glyph(字母下降部分)+ bottom half-leading

    5. 参考链接:

    1. http://techbrood.com/Guide/h5b2a?p=css-line-height

    2. http://www.w3.org/TR/CSS2/visudet.html#propdef-line-height

    3. http://www.w3.org/TR/CSS2/visudet.html#leading

  • 相关阅读:
    Gem命令详解
    使用Ruby脚本部署Redis Cluster集群
    解决gem install redis报错
    Redis Cluster命令安装
    Redis Sentinel原理介绍与部署
    PyCharm单行多行代码注释快捷键
    windows下python安装与卸载
    MySQL通过SQL语句查看表的索引
    Redis主从复制
    MySQL开启binlog日志
  • 原文地址:https://www.cnblogs.com/0616--ataozhijia/p/9189075.html
Copyright © 2011-2022 走看看