Skip to content
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

水平垂直居中方案 | HZFE - 剑指前端 Offer #64

Open
utterances-bot opened this issue Jan 19, 2022 · 3 comments
Open

水平垂直居中方案 | HZFE - 剑指前端 Offer #64

utterances-bot opened this issue Jan 19, 2022 · 3 comments
Assignees

Comments

@utterances-bot
Copy link

水平垂直居中方案 | HZFE - 剑指前端 Offer

以下方案均基于如下布局和基础样式:

https://febook.hzfe.org/awesome-interview/book4/css-vertical-horizontal-center

Copy link

建议使用类选择器

Copy link

babopo commented May 23, 2022

flex还有个简单的
#parent {
display: flex;
width: 100px;
height: 100px;
background: red;
}

#children {
margin: auto;
width: 50px;
height: 20px;
background: blue;
}

Copy link

Grid

#parent {
  display: grid;
  place-items: center;
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants