1. Flexbox

With just these 3 lines of code, we can use CSS Flexbox to center the text

display: flex;
align-items: center;
justify-content: center;

2. Grid (first type)

With just these 3 lines of code, we can use CSS Grid to center the text

display: grid;
justify-content: center;
align-content: center;

3. Grid (the second type)

The easiest way is to use only 2 lines of code

display: grid;
place-content: center;
点赞(1)

评论列表 共有 0 评论

暂无评论

微信服务号

微信客服

淘宝店铺

support@elephdev.com

发表
评论
Go
顶部