控制一行显示多少个Item
.project-list-ul {
display: grid;
margin-top: 5px;
grid-template-columns: repeat(7, minmax(0,1fr));
grid-template-rows: max-content;
height: calc(100% - 40px);
width: 100%;
gap: 24px;
}
.content-list {
position: absolute;
padding-left: 24px;
padding-right: 24px;
width: 100%;
}
@media screen and (max-width: 1920px) {
.project-list-ul {
grid-template-columns: repeat(5, minmax(0,1fr));
}
}
作者:freddyhuang
出处:https://www.cnblogs.com/freddyhuang
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。