image class not working
Hi,
I am trying to create a class on similar images to add a hover/active in css.
If I do it image by image, calling it by myscreenname_mobileimage_n, my css is working.
But when I add a class to the image and then call through this class in my css, it's not working.
Here is the css:
.imageBack{
margin-left: 10px;
-webkit-transition: margin 1s ease;
-moz-transition: margin 1s ease;
-o-transition: margin 1s ease;
-ms-transition: margin 1s ease;
transition: margin 1s ease;
}
.Imageback:active {
margin-left: -2px;
}
Thank you ![]()