div水平垂直居中
<template>
<div class="login">
<div class="login_concent">
</div>
</div>
</template>
<script>
export default {
}
</script>
<style>
.login{
height: 100%;
display: flex;
justify-content: center;
align-items: center;
background-color:black ;
}
.login_concent{
width: 500px;
height: 100px;
background-color: aquamarine;
}
</style>
本文来自投稿,不代表本站立场,如若转载,请注明出处:https://blog.itliujia.cn/info/20220294.html
-- 展开阅读全文 --
height: 100%;换成min-height: 100vh;默认占满整个屏幕高度