我的网站有问题。当我将鼠标悬停在第四张图像上时,下面的图像会分崩离析,仅在Mozilla上,但与Chrome完美搭配。我知道它有一个CSS问题,我尝试了-moz-border-radius
但是没有用。 Here is the link to the website你可以尝试一下,这里是CSS的一部分:
listsitemsbg {
list-style:none;
*zoom: 1;
margin:0;
width:100%;
padding-top: 10px;
padding-right: 0;
padding-bottom: 0;
padding-left: 0;
}
.listsitemsbg li {
margin-top:10px;
}
.listsitemsbg .thumbnail {
display: block;
padding: 4px;
border: 1.98px solid #BE2121;
background-color:#fff;
}
.listsitemsbg .thumbnail:hover {
border: 0px solid #aaa;
-moz-border-radius: 0px solid #aa
}
.listsitemsbg .thumbnail img {
width: 100%;
}
.listsitemsbg .thumbssettingsbg > div {
margin:0;
border-bottom: 0px dotted #ccc;
padding-top: 3px;
padding-right: 0;
padding-bottom: 3px;
padding-left: 0;
}
答案 0 :(得分:2)
问题在于HOVER的边界。按照以下更新悬停类。
.listsitemsbg .thumbnail:hover {
border: 1.98px solid #fff;
}
即使你可以使用下面的透明边框。
.listsitemsbg .thumbnail:hover {
border: 1.98px solid transparent;
}
答案 1 :(得分:0)
更改缩略图的悬停状态
.listsitemsbg .thumbnail:hover{
border: 1.98px solid #aaa;
}