44.jpg/280px-Hannstarjmv694v0pdf44.jpg" />
The inline CSS is as follows:
.img-thumbnail-container img {
height: 100%;
}
.img-thumbnail-container {
position: relative;
.img-thumbnail {
display: block;
overflow: hidden;
margin-bottom: 10px;
transition:.2s;
width: 100%;
.img-thumbnail:hover {
transform: scale(1.1);
cursor: pointer;
.img-thumbnail-container:hover.img-thumbnail {
opacity:.8;
If I remove the CSS class of img-thumbnail-container:hover.img-thumbnail from.img-thumbnail the hover does not work. Any ideas?
I am using Bootstrap 4
Related links:
Commentaires