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
主要整理一些在工作合作过程中出现的注意事项
@mixin sticky($dom, $height, $top:0, $zIndex:10) { position: relative; height: $height; z-index: $zIndex; &.fixed #{$dom} { position: fixed; top: $top; left: 0; right: 0; margin: 0 auto; max-width: 540px; z-index: $zIndex; } @supports (position: -webkit-sticky) { & { position: -webkit-sticky; top: $top; height: auto; &.fixed #{$dom} {position: relative;top:0;} } } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
主要整理一些在工作合作过程中出现的注意事项
PM篇
设计师篇
开发篇
The text was updated successfully, but these errors were encountered: