gpt4 book ai didi

css - 在 CSS 中使用关闭按钮悬停图像

转载 作者:太空宇宙 更新时间:2023-11-04 12:51:39 26 4
gpt4 key购买 nike

我试图在 CSS 中的悬停图像的右上角插入一个关闭按钮。但是图像出现在悬停图像的中间。我不确定我在哪个区域犯了错误。

jsfiddle

这些是我的 css 代码,我已经将它们插入到 jsfiddle 中用于我的演示

body {
margin: 0;
padding: 0;
background: #EEE;

}

#pagecenter {
background-color: transparent;
width: 1200px;
min-width: 1200px;
height: auto;
min-height: 100%;
padding-top: 0px;
padding-right: 0px;
padding-bottom: 0px;
padding-left: 0px;
margin-top: 0px;
margin-right: auto;
margin-bottom: auto;
margin-left: auto;
position: relative;
border-collapse: collapse;
}

.wrap {
overflow: hidden;
margin: 50px;
}

/*20 for 5 box , 25 for 4 box*/
.box {
float: left;
position: relative;
width: 25%;
padding-bottom: 25%;
color: #FFF;


}
/*border width control*/
.boxInner {
position: absolute;
left: 20px;
right: 20px;
top: 20px;
bottom: 20px;
overflow: hidden;
background: #66F;

}

.boxInner img {
height: 100%;
width: 100%;
}


.gallerycontainer{
position: relative;
/*Add a height attribute and set to largest image's height to prevent overlaying*/
}

/*This hover is for small image*/
.thumbnail:hover img{
cursor:pointer;
border: 1px solid transparent;
}

/*This hide the image that is in the span*/
.thumbnail span{
position: absolute;
padding: 5px;
visibility: hidden;
color: black;
text-decoration: none;
}

/*This is for the hidden images, to resize*/
.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
width:100%; /* you can use % */
height: auto;
padding: 2px;
}

/*When mouse over, the hidden image apear*/
.thumbnail:hover span{

position:fixed;
visibility: visible;
max-width:600px;
top: 0;
left: 0;
right:0;
bottom:0;
margin: auto;
z-index: 200;
}

.close{
position:absolute;
right:-10px;
top:-10px;
display:none;

z-index:1;
}


.thumbnail:hover span .close{
display:block;
}

最佳答案

你需要给出宽度和高度

JS Fiddle

.thumbnail span .close{
position:absolute;
right:-10px;
top:-10px;
display:none;
width:30px;
height:30px;
z-index:1;
}

关于css - 在 CSS 中使用关闭按钮悬停图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26116390/

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