“cantos redondos de imagem CSS” 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

CSS RONADORES RONADORES

/* Set rounded corners with border-radius property */

.class {
  border-radius: 4px;
}

.circle {
  border-radius: 50%;
}
k-vernooy

Como arredondar os cantos de um esboço da div.

div {
  outline: auto;
  outline-style: round;
}
Pixel Freak

como arredondar as bordas de uma imagem em html

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

cantos redondos de imagem CSS

 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 “cantos redondos de imagem CSS”

Perguntas semelhantes a “cantos redondos de imagem CSS”

Mais respostas relacionadas para “cantos redondos de imagem CSS” em CSS

Procure respostas de código populares por idioma

Procurar outros idiomas de código