I am working on an application where I have a collection of images. When the user clicks on an image, it receives a thick border around it at a certain distance.
Now, I want to customize this border to reduce the spacing between the image and the border by utilizing CSS.
Does anyone have any recommendations on how I can make this adjustment?
Thank you in advance for your help!
The following is the CSS code being used:
.logo_set_iphone {
display: inline-block;
width: 100%;
float: center;
padding-top: -50px;
padding-bottom: -50px;
padding-left: -50px;
padding-right: -50px;
}
.logo_set_iphone img {
display: inline-block;
text-align: center;
height: 50px;
float: center;
margin-bottom: -6px;
margin-top: -6px;
margin-left: -5px;
margin-right: -5px;
padding-top: -10px;
padding-bottom: -10px;
padding-left: -10px;
padding-right: -10px;
}
All of the images are contained within the "logoset" class.