-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
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
页面布局 #45
Comments
最便捷的垂直居中 .container { display: flex; }
.item { margin: auto } |
词汇 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
前端布局发展史
表格布局(table) -> 定位(position) -> 浮动布局(float) -> 弹性盒布局(flex) -> 栅格布局(grid)
混杂
定位 + 浮动
,弹性+弹性
,弹性+定位
,栅格+弹性
,栅格+定位
布局的发展动力?:
vw? 解决rem需要在css基础上借助js进行辅助的缺点
css3中的n都是以1作为起始值, 也就是css不是作为变成语言, 而是更多的作为描述语言
The text was updated successfully, but these errors were encountered: