解释下这段代码container{ display: grid; box-shadow: 0px 10px 50px 10px lightgrey; /简历周围阴影/ width: 900px; /* height: 900px; / margin: 0 auto; /background: red;/ } / 简历上方线条 / .topline{ display: flex; flex-direction: row; } .top_left{ background-color: #248CB1; height: 30px; width: 30px; /transform: translate(-30px,0); ! 向左偏移 !/ } .top_left1{ background-color: #248CB1; height: 30px; width: 200px; /transform: translate(-30px,0); ! 向左偏移 !/ } .top_right{ background-color: black; height: 30px; width: 100%; /transform: translate(-30px,0);/ margin-bottom: 30px; } .top_right p{ transform: translate(0,-10px); color: whitesmoke; font-weight: bold; / 粗体 / } / mid */ .mid{ margin-left: 25px; } /照片/ .wanyi{ display: flex; flex-direction: row; align-items: end; } .wanyi_mid{ margin-left: 25px; display: flex; flex-direction: column; } .wanyi_mid span{ font-size: 40px; } .wanyi_right{ display: flex; flex-direction: column; margin-left: 180px; align-items: flex-end; } .wanyi_r1,.wanyi_r2,.wanyi_r3,.wanyi_r4{ display: flex; flex-direction: row; margin-bottom: -20px; } .normal{ display: flex; flex-direction: row; font-weight: bold; }
时间: 2023-05-13 11:05:44 浏览: 169
CSS三列布局的多种表现形式
这段代码是用来设置一个容器的样式,其中包括使用网格布局(display: grid),添加一个简历周围的阴影效果(box-shadow),设置容器的宽度为900像素(width: 900px),并且居中显示(margin: 0 auto)。
另外,代码中还包括一个用于创建简历上方线条的类(.topline),其中使用了弹性盒子布局(display: flex),并且设置了左侧区域的背景颜色。
阅读全文