.card { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); grid-gap: 20px; justify-items: center; } .card__item { display: flex; flex-direction: column; align-items: center; padding: 20px; border: 1px solid #ccc; border-radius: 5px; box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1); } .card__item img { width: 100%; height: auto; margin-bottom: 10px; } .card__item h3 { font-size: 20px; font-weight: bold; margin-bottom: 10px; } .card__item p { font-size: 16px; line-height: 1.5; margin-bottom: 10px; }
以上是一个简单的CSS3卡片布局示例,通过grid布局可以实现响应式排列,minmax函数可以实现动态尺寸,flex布局可以实现卡片内部的内容居中排列。通过定制不同的样式,大家可以自由地制作各种不同风格的卡片布局,提升网页的用户体验。