您可以在 github 仓库中找到这篇文章中的所有代码。
您可以在此处查看垂直中心 - codesandbox 和水平中心的视觉效果。
通过 css 居中
垂直居中
<!doctype html> <html lang="en"> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta http-equiv="x-ua-compatible" content="ie=edge" /> <title>centering</title> <link rel="stylesheet" href="styles.css" /> </head> <body>登录后复制centering
centering
centering
centering
centering
立即学习“前端免费学习笔记(深入)”;
centering
立即学习“前端免费学习笔记(深入)”;
centering
centering
</body> </html>
.center-by-absolute-margin { position: absolute; top: 0; bottom: 0; margin: auto 0; } .center-by-pseudo-class::before { content: ""; display: inline-block; height: 100%; vertical-align: middle; } .center-by-line-height { height: 200px; line-height: 200; } .center-by-table { display: table-cell; vertical-align: middle; } .center-by-flex { display: flex; align-items: center; } .center-by-grid { display: grid; align-items: center; } .center-by-absolute-parent { position: relative; } .center-by-absolute-child { position: absolute; top: 50%; transform: translatey(-50%); } .center-by-calc { height: 70px; position: relative; top: calc(50% - 35px); }登录后复制
水平居中
<!doctype html> <html lang="en"> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta http-equiv="x-ua-compatible" content="ie=edge" /> <title>centering</title> <link rel="stylesheet" href="styles.css" /> </head> <body>登录后复制centering
centering
centeringcentering
centering
立即学习“前端免费学习笔记(深入)”;
centering
立即学习“前端免费学习笔记(深入)”;
centering
centering
</body> </html>
.center-by-fixed-width { width: 70px; margin: 0 auto; } .center-by-text-align { text-align: center; } .center-by-unfixed-width { text-align: center; } .center-by-table { display: table; margin: 0 auto; } .center-by-flex { display: flex; justify-content: center; } .center-by-grid { display: grid; justify-content: center; } .center-by-absolute-parent { position: relative; } .center-by-absolute-child { position: absolute; left: 50%; transform: translateX(-50%); } .center-by-calc { width: 70px; margin-left: calc(50% - 35px); }登录后复制
以上就是居中 - CSS 挑战的详细内容,更多请关注慧达安全导航其它相关文章!
免责 声明
1、本网站名称:慧达安全导航
2、本站永久网址:https//www.huida178.com/
3、本站所有资源来源于网友投稿和高价购买,所有资源仅对编程人员及源代码爱好者开放下载做参考和研究及学习,本站不提供任何技术服务!
4、本站所有资源的属示图片和信息不代表本站的立场!本站只是储蓄平台及搬运
5、下载者禁止在服务器和虚拟机下进行搭建运营,本站所有资源不支持联网运行!只允许调试,参考和研究!!!!
6、未经原版权作者许可禁止用于任何商业环境,任何人不得擅作它用,下载者不得用于违反国家法律,否则发生的一切法律后果自行承担!
7、为尊重作者版权,请在下载24小时内删除!请购买原版授权作品,支持你喜欢的作者,谢谢!
8.若资源侵犯了您的合法权益,请持 您的版权证书和相关原作品信息来信通知我们!QQ:1247526623我们会及时删除,给您带来的不便,我们深表歉意!
9、如下载链接失效、广告或者压缩包问题请联系站长处理
10、如果你也有好源码或者教程,可以发布到网站,分享有金币奖励和额外收入!
11、本站资源售价只是赞助,收取费用仅维持本站的日常运营所需
12、因源码具有可复制性,一经赞助,不得以任何形式退款。
13、本文内容由网友自发贡献和站长收集,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系1247526623@qq.com
转载请注明出处: 慧达安全导航 » 居中 - CSS 挑战
发表评论 取消回复