CSS布局

作者: 我叫杨毅 | 来源:发表于2022-05-19 19:08 被阅读0次
display: flex;// 横向显示
flex: 1; // 占满剩余区域
flex-direction: column;// 纵向显示
justify-content: space-between;// 两边贴边
// 固定位置,在底部

//横向居中
display: flex;
justify-content: center;

//纵向居中


position: fixed;
bottom: 0;
left: 0;

align-items: center;// 横向居中
white-space: nowrap;// 文字不换行

position: relative;// 上移10像素
top: -10px;

相关文章

网友评论

      本文标题:CSS布局

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