Learn how to style images using CSS.
Rounded Images
You can use the border-radius
property to create rounded images :
Rounded Image:
img {
border-radius: 8px;
}
Circled Image:
img {
border-radius: 50%;
}
Learn how to style images using CSS.
You can use the border-radius
property to create rounded images :
Rounded Image:
img {
border-radius: 8px;
}
Circled Image:
img {
border-radius: 50%;
}