我的主文件是一个.php文件,可以从这个页面上传和显示图片。让这些图像显示在三列中一直令人困惑。它通常是这样完成的:https://www.w3schools.com/howto/howto_css_images_side_by_side.asp 将每个图像或图像放在 div 标签中。三个 div 标签,如果你想要三列。在我的 .php 文件中,图像没有写在代码中,那么如何让图像在页面上分三列显示呢? 我确实在显示第一列的 PHP 代码周围包含了一个 div 标签。
这是CSS代码:
.container{
}
.container .heading h3 span{
font-weight: 100;
}
.container .box{
display: flex;
flex-direction: row;
justify-content: space-between;
}
.container .box .dream{
flex-direction: column;
width: 32.5%;
}
.container .box .dream img{
width: 100%;
padding-bottom: 15px;
border-radius: 5px;
}