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
这个内容主要是学习了张鑫旭大神的一些博文以及慕课网上一些课程的一些收获
初衷:文字环绕效果
特性:包裹性、破坏性 包裹性: 相当于带有方向的display:inline-block; 可以有宽高 破坏性: 浮动破坏了元素本身的inline boxes特性,使元素会从line boxes上脱离出来,跟随自身的方位属性,靠边排列,破坏了高度。
某些场合可以与float替换使用, block化,同样具有包裹性, 脱离文档流
无束缚absolute(绝对定位的margin定位) (1)无定位值的absolute元素可以使用margin 定位。 (2)无定位值的absolute元素是个没有实际宽度的浮动元素。 可以说,没有设置定位值的absolute元素是个普通又不普通的元素,普通之处在于其依旧在DOM tree中,对margin等属性敏感;不普通在于其实际的高宽都丢失了。
位置不变,上帝视角,去浮动, 超越overflow
top, right, left, bottom, width, height 相对于最近的边界 定位 同时存在时, width、height、margin > top right left bottom
margin-left
border-left
计算BFC高度时,浮动元素也参与计算(BFC会确切包含浮动的子元素,即闭合浮动)。
The text was updated successfully, but these errors were encountered:
No branches or pull requests
关于css定位的一些事
这个内容主要是学习了张鑫旭大神的一些博文以及慕课网上一些课程的一些收获
目录
Float
初衷:文字环绕效果
特性:包裹性、破坏性
包裹性: 相当于带有方向的display:inline-block; 可以有宽高
破坏性: 浮动破坏了元素本身的inline boxes特性,使元素会从line boxes上脱离出来,跟随自身的方位属性,靠边排列,破坏了高度。
absolute
某些场合可以与float替换使用, block化,同样具有包裹性, 脱离文档流
无束缚absolute(绝对定位的margin定位)
(1)无定位值的absolute元素可以使用margin 定位。
(2)无定位值的absolute元素是个没有实际宽度的浮动元素。
可以说,没有设置定位值的absolute元素是个普通又不普通的元素,普通之处在于其依旧在DOM tree中,对margin等属性敏感;不普通在于其实际的高宽都丢失了。
位置不变,上帝视角,去浮动, 超越overflow
top, right, left, bottom, width, height
相对于最近的边界 定位
同时存在时, width、height、margin > top right left bottom
relative
top,left,right ,bottom 相对于自己
不影响其他元素布局,位置变化,但是不影响同层元素的位置
top > bottom
left>right
relative 、absolute 、fixed
对absolute 限制作用
1.限制定位
2.限制层级
3.overflow 限制
relative 与fixed
限制z-index (当relative设置了z-index 子元素的fixed的层级将受影响)
BFC
在BFC中,每一个盒子的左外边缘
margin-left
会触碰到容器的左边缘border-left
(对于从右到左的格式来说,则触碰到右边缘),及时存在浮动也是如此。即不会发生margin穿透
计算BFC高度时,浮动元素也参与计算(BFC会确切包含浮动的子元素,即闭合浮动)。
原本浮动元素应该是脱离文档流的,但是BFC中会计算其高度。
叠层上下文
The text was updated successfully, but these errors were encountered: