一些css特性

2020-05-07  本文已影响0人  vavid

baseline

应用 display:inline-block; 的元素的 baseline,当其中有 inline 元素时,按 inlinebaseline;当没 inline元素时,按最低边。

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.

BFC

块格式化上下文 Block Formatting Context

1.触发BFC
2.作用

BFC是页面上的一个独立的容器,其子元素不会影响到外面元素。
1.包含子元素的浮动,或者避免受其它浮动元素影响。
2.阻止因为浏览器因为四舍五入造成的多列布局换行的情况
3.阻止相邻元素外边距叠加

上一篇 下一篇

猜你喜欢

热点阅读