css常见问题
MsimonBlowSnow
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
BFC
什么是BFC 1.BFC又名块格式化上下文(Block Formatting Context,BFC) 是Web页面的可视CSS渲染的一部分,是块盒子的布局过程发生的区域,也是浮动元素与其他元素交互的区域。 BFC的作用 产生BFC的父元素,不会使得里面的子元素干扰父元素的兄弟元素,即BFC里面的子元素是完全独立的存在,不会干扰外面的其他元素。 BFC的触发条件 根元素(<html>) 浮动元素(元素的 float 不是 none) 绝对定位元素(元素的 position 为 absolute原创 2020-09-27 15:45:15 · 188 阅读 · 0 评论 -
css面试常见题目
1.margin的常见问题 1.margin的融合问题 当两个div的margin值在一起时,取两者中的最大的值 例如: <div style="width: 100px;height: 100px;background-color: green;margin-bottom: 200px;">a</div> <div style="width: 100px;height: 100px; background-color: black;margin-top:原创 2020-09-27 15:34:15 · 151 阅读 · 0 评论
分享