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
box-sizing: border-box;
fixed
absoute
The text was updated successfully, but these errors were encountered:
No branches or pull requests
계획
일정
box-sizing: border-box;
을 설정하면, border 두께가 box 크기 안쪽으로 포함된다.fixed
또는absoute
로 값을 주면 지정된 노드는 전체 노드에서 분리된다. 즉, 전체 노드에 걸쳐 Reflow 비용이 들지 않으며, 해당 노드의 Repaint 비용만 들어가게 된다.참고
The text was updated successfully, but these errors were encountered: