“Como fazer cantos arredondados em CSS com imagens” Respostas de código

CSS Image redonda

 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

Como fazer cantos arredondados em CSS com imagens

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

como arredondar as bordas de uma imagem em html

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

Como fazer cantos arredondados em CSS com imagens

 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

Respostas semelhantes a “Como fazer cantos arredondados em CSS com imagens”

Perguntas semelhantes a “Como fazer cantos arredondados em CSS com imagens”

Mais respostas relacionadas para “Como fazer cantos arredondados em CSS com imagens” em CSS

Procure respostas de código populares por idioma

Procurar outros idiomas de código