Circular images

by adamh

HTML

<div>
    <img src="http://placekitten.com/100/100" />
</div>

CSS

body {
    background: #eee;
}

div {
    display: inline-block;
    height: 96px;
    width: 96px;
    margin: 20px;
    overflow: hidden;
    border: 4px solid rgba(48,48,48,1);
    border-radius: 50px;
}