Circular Image

by Chandana Thota

HTML

<div class="userprofile">
    <div style="background-image: url('http://images.nationalgeographic.com/wpf/media-live/photos/000/007/cache/spider-monkey_719_600x450.jpg');" class="mypic" id="mypic">
        <span class="glow">&nbsp;</span>
    </div>
    <span class="username">Chandana</span>
</div>

CSS

body {background:black; margin:100px}
.userprofile {
    padding: 20px 0px 0px 0px;
    text-align: center;
    list-style-type: none;
}

.mypic {
    border-radius: 50px;
    position: relative;
    display: block;
    margin: 10px auto;
    box-shadow: 0px 0px 0px 4px #4b4b4b, 0px 0px 10px 10px rgba(0, 0, 0, 0.3);
    width: 100px;
    height: 100px;
    behavior: url(/resources/css/PIE.htc);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.glow {
    display: block;
    width: 109px;
    height: 107px;
    position: absolute;
    top: 0px;
    left: 50%;
    margin-left: -55px;
    box-shadow: inset 90px 110px 0px -90px rgba(255,255,255,.15);
    border-radius: 50%;
}

.username {color:#efefef}