gpt4 book ai didi

CSS - 删除垂直间距

转载 作者:行者123 更新时间:2023-11-28 13:11:45 25 4
gpt4 key购买 nike

我有一个网页位于此 URL http://www.hollox.net .

这是一个简单的页面,用于测试需要包含图片重叠的特定菜单的客户。

定位是相对的。

我有两个系列的 3 张重叠的图片:

enter image description here enter image description here

是否有一个 CSS 标签可以删除两个系列的 div 容器之间的空间,或者我是否必须操纵 top 属性?

white space

这里是源代码:

<html>
<head>
<title>test pour Patrick</title>
<style type="text/css">

.container
{
width: 800px;
height: 400px;
border: solid 5px yellow;
text-align: center;
overflow: hidden;
}
.table
{
position:relative;
display: inline-table;
width: 310px;
}

.row
{
position:relative;
display: table-row;
}

.cell
{
position:relative;
width: 100px;
height: 100px;
border: solid 1px black;
display: table-cell;
}

.p
{
background-color: Gray;
position:relative;
float: left;
clear: none;
z-index: 1;
}

.x
{
background-color: Blue;
position:relative;
float: left;
clear: none;
z-index: 2;
/* 100px x 3 = 300px */
/* hardcoded value */
top: -80px;
}

</style>
</head>
<body>
<div class="container">
<div class="table">
<div class="row">
<div class="cell p"><img src="./images/p.png" /></div>
<div class="cell p"><img src="./images/p.png" /></div>
<div class="cell p"><img src="./images/p.png" /></div>
<div class="cell x"><img src="./images/x.png" /></div>
<div class="cell x"><img src="./images/x.png" /></div>
<div class="cell x"><img src="./images/x.png" /></div>
</div>
<div class="row">
<div class="cell p">A<img src="./images/p.png" /></div>
<div class="cell p">B<img src="./images/p.png" /></div>
<div class="cell p">C<img src="./images/p.png" /></div>
<div class="cell x">1<img src="./images/x.png" /></div>
<div class="cell x">2<img src="./images/x.png" /></div>
<div class="cell x">3<img src="./images/x.png" /></div>
</div>
</div>
</div>
</body>
</html>

谢谢,祝你有美好的一天!塞巴斯蒂安

最佳答案

像这样编辑 x 类:

.x {
background-color: #00F;
position: relative;
float: left;
clear: none;
z-index: 2;
margin-top: -80px;

使用 margin-top: -80px; 代替 top:-80px;

关于CSS - 删除垂直间距,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18853482/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com