美文网首页
css实现水平垂直居中

css实现水平垂直居中

作者: 编程放大镜 | 来源:发表于2022-05-12 22:51 被阅读0次

工作中经常要用到css实现水平垂直居中

<div class="out">
<div class="in">
<p>占位文字</p>
<a href="#">占位地址</a>
</div>
</div>
<style>
.out { width: 100%; height: 100vh; display:flex; align-items: center;justify-content: center; text-align:center; font-size:large;}
</style>

相关文章

网友评论

      本文标题:css实现水平垂直居中

      本文链接:https://www.haomeiwen.com/subject/giljurtx.html