我正在尝试在 Hover 上为图像着色。我有 css 工作,但一些具有圆形边缘或未完全填充父级的图像显示黑色背景:
(最左边有鼠标在它上面)
如何隐藏黑色所以只有 img 是有色的?
这是我的CSS:
.thumb {
width:150px;
height:150px;
margin: 0px 5px 14px 14px;
float:left;
display:inline;
background: black;
overflow:hidden;
cursor: pointer;
/*border: 2px solid #00A3C6; */
}
.thumb img {
display: block;
-webkit-transition: all 0.25s linear;
-moz-transition: all 0.25s linear;
-ms-transition: all 0.25s linear;
-o-transition: all 0.25s linear;
transition: all 0.25s linear;
}
.thumb:hover img {
opacity: 0.7;
}