-4

I want to create image avatar like avatar contact of skype,can you help me ?, I try use border radius-border but lucky

jbutler483
  • 24,074
  • 9
  • 92
  • 145
pasedol
  • 7
  • 1

3 Answers3

2

I think you can use border-radius on img tags, too.

img{
    border-radius: 50%;
}
<img src="https://c2.staticflickr.com/4/3016/3071708735_ddaf5d361b.jpg" alt="">
bbosternak
  • 357
  • 4
  • 14
0

CSS:

.circleImage {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: green;
}

HTML:
<div class="circleImage"></div>

Keep the border radius half of the width or height for circular images like in Skype.

Kurenai Kunai
  • 1,842
  • 2
  • 12
  • 22
0

Try like this: Demo

div.avatar {
    border-radius:50%;
    overflow:hidden;
    width:100px;
    height:100px;
    border:1px solid #ccc;
}
div.avatar img {   
    height:100%;
}

HTML:

<div class="avatar">
    <img src="http://www.stockazoo.com/uploads/3/5/4/5/3545172/5579090_orig.jpg" />
</div>
G.L.P
  • 7,119
  • 5
  • 25
  • 41