代码素材 您现在的位置是:网站首页 > 代码素材

<style>

.jz {

background: red;

width: 100%;

height: 100px;

/*flex 布局*/

display: flex;

/*实现垂直居中*/

align-items: center;

/*实现水平居中*/

justify-content: center;

}

</style>