“Cómo hacer esquinas redondeadas en CSS con imágenes” Código de respuesta

Ronda de imagen CSS

 img {
  border-radius: 50%;
  height:200px;
  width:200px;
} 
/*image size, (height & width) both must be same.
	if they are not same then no circle. 
*/
Noob Learner

Cómo hacer esquinas redondeadas en CSS con imágenes

img{
  width: 200px;
  height:200px;
  border-radius: 50%;
}
Glorious Gnat

Cómo redondear los bordes de una imagen en HTML

img.rounded-corners {
  border-radius: 30px;
}
Prickly Penguin

Cómo hacer esquinas redondeadas en CSS con imágenes

 img {
  border-radius: 50%;
  height:100px;
  width:100px;
}
/* change image height and width to see your image preview. 
for me all of the different images dimensions are rounded with this css*/
/*Note :Height and width should be of same  size*/
Beautiful Buzzard

Respuestas similares a “Cómo hacer esquinas redondeadas en CSS con imágenes”

Preguntas similares a “Cómo hacer esquinas redondeadas en CSS con imágenes”

Más respuestas relacionadas con “Cómo hacer esquinas redondeadas en CSS con imágenes” en CSS

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código