首页 > 编程知识 正文

css垂直居中对齐,css垂直居中布局

时间:2023-05-05 23:22:46 阅读:257255 作者:666

垂直居中的几种方式

//方式一 transformelement.style { position: absolute; left: 50%; top: 50%; background: yellow; z-index: 1; transform: translate3d(-50%,-50%,0);}//方式二 table.box1{ text-align: center; width: 100%; display: table; background: blue;}.box1> span {display: table-cell;vertical-align: middle;}//方式三 flexdiv.parent{ display:flex;}div.child{ margin:auto;}//2.box1{display: flex;justify-content: center;align-items: center;}

版权声明:该文观点仅代表作者本人。处理文章:请发送邮件至 三1五14八八95#扣扣.com 举报,一经查实,本站将立刻删除。