给这段CSS代码写一下注释 body display flex; flex-direction column; align-items center; justify-content center; height 100vh; margin 0;
/* 设置body元素的样式 / body { display: flex; / 使用flex布局 / flex-direction: column; / 主轴方向为垂直方向 / align-items: center; / 在交叉轴上居中对齐 / justify-content: center; / 在主轴上居中对齐 / height: 100vh; / 设置高度为视窗的100% / margin: 0; / 清除外边距 / padding: 0; / 清除内边距 / } / 完成body元素样式的设置 */
原文地址: https://www.cveoy.top/t/topic/i3G6 著作权归作者所有。请勿转载和采集!