We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BFC(Block Formatting Context)格式化上下文,是盒模型的一种渲染布局,简言之可以理解为 一个独立的容器,不受外部影响,不影响外部。
满足下列条件之一就可触发 BFC
float
none
overflow
visible
display
inline-block
table-cell
table-caption
position
absolute
fixed
The text was updated successfully, but these errors were encountered:
关于对CSS中BFC的理解 - Thinktxt
Sorry, something went wrong.
No branches or pull requests
BFC概念
BFC(Block Formatting Context)格式化上下文,是盒模型的一种渲染布局,简言之可以理解为 一个独立的容器,不受外部影响,不影响外部。
如何触发 BFC
满足下列条件之一就可触发 BFC
float
的值不为none
overflow
的值不为visible
display
的值为inline-block
、table-cell
、table-caption
position
的值为absolute
或fixed
BFC布局规则
BFC 的作用
参考资料
The text was updated successfully, but these errors were encountered: