gpt4 book ai didi

html - 如何叠加图像

转载 作者:太空宇宙 更新时间:2023-11-04 13:25:21 24 4
gpt4 key购买 nike

我试图隐藏其中一张图片,它确实隐藏了其中一张图片,但它在图片周围留下了一个边框,如果它没有被隐藏,它应该在那里。换句话说,我希望隐藏图像位于可见图像的后面。我希望我清楚

http://jsfiddle.net/47Vab/1/

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" href="main.css" />
<title></title>
</head>
<body class="body">
<div class="box">
<div class="imgs">
<img id="Img2" src="IMG/2.jpg"/>
<img id="Img1" class="hidden" src="IMG/1.jpg"/>
</div>
</div>
</body>
</html>


body{
background-color:#F0F0F0 ;
color:#000305;/*font color*/
font-size: 87.5%;/*87.5% out of 14px*/
font-family: Arial,'Lucida Sans Unicode';
line-height: 1.5;
text-align: left;
}

.body{
margin:0 auto;
width:70%;
clear:both;
}

.box{
background-color: yellowgreen;
margin:50px auto;
width:80%;
height:auto;
border-style:solid;
border-width:5px;
border-color: black;
}



.imgs{
margin:50px auto;
width:80%;
border-style:solid;
border-width:5px;
border-color: black;
}

img {
max-width: 100%;
display: block;

}
.hidden{
visibility : hidden;
}

最佳答案

尝试使用 display: none 而不是 visibility: hidden

visibility: hidden 隐藏图像但保留其空间。而 display: none 隐藏它并且不占用任何空间。

Fiddle

关于html - 如何叠加图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23765563/

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