图片列表改个样式!DOCTYPE htmlhtml lang=enhead meta charset=UTF-8 meta name=viewport content=width=device-width initial-scale=10 title手机端网站title style 导航条样式 nav-bar backgr
对图片列表样式进行修改,改为两列布局,图片之间有间距:
.image-list { display: flex; flex-wrap: wrap; justify-content: space-between; margin: 20px 0; }
.image-list .image-item { width: 49%; margin-bottom: 20px; }
.image-list .image-item img { max-width: 100%; height: auto; margin-bottom: 10px; }
.image-list .image-item .title { display: block; background-color: #000; color: #fff; padding: 5px; text-align: center; font-size: 14px; }
原文地址: https://www.cveoy.top/t/topic/br7v 著作权归作者所有。请勿转载和采集!