Css3、Scss 常用的布局设置-通用
常见的几种css布局垂直居中// 第一种 绝对定位#parent{ position:relative; height:400px; .son{ position:absolute; width:100px; height:100px; top: 50%; transform: translateY(-50%); }}// 第二种 flex布局#parent{ display:flex; align-items:center; .