CSS code for profile pictures?
Does anyone know what's wrong with this code, since it doesn't work! It's supposed to round the edges of the profile picture when you hover over it with the mouse.
the code is: /* Basic styling for the profile picture */
.profile-container {
display: inline-block;
overflow: hidden; /* Prevents the image from extending beyond the container */
}
.profile-img {
width: 100px; /* Default profile picture size */
height: 100px;
object-fit: cover; /* Scale the image to fill the entire container */
border-radius: 10px; /* Initially slightly rounded corners */
transition: border-radius 0.3s ease, transform 0.3s ease; /* Smooth transition for the hover effect */
}
/* Effect on hover */
.profile-img:hover {
border-radius: 50%; /* Fully rounded corners on hover */
transform: scale(1.05); /* Slightly enlarge the image */
}
If you’re over transform if you want to change something, it makes sense to set the normal state beforehand. I would also overflow: hidden to be able to store other elements such as a menu.
Set the width of the profile image by the parent container and apply the scaling during hovern. The parent container gets no appearance at all and only the image gets border radius is assigned.
You have given the image a fixed height and width and that would rather apply to the parent container. Instead, the image gets only a width of 100% and with aspect-ratio a side ratio of 1 to 1.
HTML:
CSS:
code declaration seems to be in order, rounding takes place in the did with the border radius which contains 1-4 parameters (top left, top right, bottom left, bottom right) , please add a picture to what it looks like.