gallery图片组合问题
来源:4-3 项目作业
木木汇成林
2020-02-08 14:25:48
<div class="gallery"> <!-- gallery简介 --> <div class="up1"> <h1>GALLERY</h1> <label class="line"></label> <p> There are moments in life when you miss someone so much that you just want to pick them from your dreams and hug them for real! </p> </div> <div class="gallery-down"> <ul> <li> <img src="images/03-01.jpg"> <div class="info"> <p>SCIENCE LAB</p> </div> </li> </ul> </div> </div> .gallery{ width:100%; height:550px; } .gallery .gallery-down{ height:400px; margin-left:200px; margin-right:200px; background-color:pink; } .gallery-down ul li{ list-style:none; } .gallery-down ul li .info{ background-color:black; width:300px; height:50px; } .gallery-down ul li img{ width:300px; height:200px; } .gallery-down ul li p{ color:white; line-height:50px; margin-left:10px; }
图片和下面的黑色框中间有空隙,怎么调整呢?
1回答
你好,
.gallery-down ul li .info{
background-color:black;
width:300px;
height:50px;
}
改为:
.gallery-down ul li .info{
margin-top: -30px;
background-color:black;
width:300px;
height:50px;
}
效果如下:
如果解决您的问题请采纳,祝学习愉快!
相似问题