You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
405 B

/* pages/classroom/classroom.wxss */
.grid-view{
display: -webkit-flex;
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
width: 100%;
}
5 years ago
/* 下面这个实现表格式的布局有多行多列width=25% 表示将会显示4列 */
.grid-cell{
flex: 0 0 auto;
width: 25%;
text-align: center;
color: #797979;
padding: 40rpx 0;
font-size: 30rpx;
}