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
相对于父元素宽度的
[max/min-]width、left、right、padding、margin 等;
[max/min-]width
left
right
padding
margin
相对于父元素高度的
[max/min-]height、top、bottom 等;
[max/min-]height
top
bottom
相对于继承字号的
font-size 等;
font-size
相对于自身字号的
line-height 等;
line-height
相对于自身宽高的
border-radius、background-size、transform: translate()、transform-origin、zoom、clip-path 等;
border-radius
background-size
transform: translate()
transform-origin
zoom
clip-path
特殊算法的
background-position(方向长度 / 该方向除背景图之外部分总长度 * 100)、 filter 系列函数等;
background-position(方向长度 / 该方向除背景图之外部分总长度 * 100)
filter
父元素
如果自身设置 position: absolute
position: absolute
“父元素”指:相对于离它最近的那个 position 不为 static 的外层元素,如果没有这样的元素,则相对于窗口。
position
static
如果 position: fixed
position: fixed
“父元素”指:视口。
The text was updated successfully, but these errors were encountered:
梳理的非常棒👍
Sorry, something went wrong.
No branches or pull requests
相对于父元素宽度的
[max/min-]width
、left
、right
、padding
、margin
等;相对于父元素高度的
[max/min-]height
、top
、bottom
等;相对于继承字号的
font-size
等;相对于自身字号的
line-height
等;相对于自身宽高的
border-radius
、background-size
、transform: translate()
、transform-origin
、zoom
、clip-path
等;特殊算法的
background-position(方向长度 / 该方向除背景图之外部分总长度 * 100)
、filter
系列函数等;父元素
如果自身设置
position: absolute
“父元素”指:相对于离它最近的那个
position
不为static
的外层元素,如果没有这样的元素,则相对于窗口。如果
position: fixed
“父元素”指:视口。
The text was updated successfully, but these errors were encountered: