#innder {
width: auto; // 默认宽度值是auto,不是100%,如果是100%的话,会撑大#center的。
}
width: auto; // 默认宽度值是auto,不是100%,如果是100%的话,会撑大#center的。
}
2021-12-25
使用 弹性盒子属性;
display: flex;
flex-direction: row;
justify-content: center;
优点:适合控制多个子元素居中显示,在移动端适配比较好
缺点:直接作用在父元素上,子元素不用设置相关属性
display: flex;
flex-direction: row;
justify-content: center;
优点:适合控制多个子元素居中显示,在移动端适配比较好
缺点:直接作用在父元素上,子元素不用设置相关属性
2021-10-07