JSFiddle - React, Tailwind, and code Playground

by metaxos

HTML

<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<div class="container">
    <div class="row">
        <div class="col-md-4"></div>
        <div class="col-md-4">
            <div class="circle1Wrapper">
                <div class="circle-textSmall bubble1outer">
                    <div> <span class="bubbleIconSmall clearfix">
                            <img src="http://lorempixel.com/40/40/" />
                        </span>
 <span class="bubbleHeadSmall clearfix">label</span>

                    </div>
                </div>
            </div>
        </div>
        <div class="col-md-4"></div>
    </div>
</div>

CSS

.circle1Wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 9999;
    margin: auto;
    border: 1px solid;
}
.bubble1outer {
    position: absolute;
}
.circle-textSmall div {
    width: 125px;
    margin-left: 87%;
}
.circle-textSmall div {
    float: left;
    width: 250px;
    padding-top: 15%;
    line-height: 1em;
    margin-top: -0.5em;
    text-align: center;
    color: #000;
    margin-left: 13%;
}
span.bubbleIconSmall > img {
    width: 45%;
    height: auto;
}
.circle-textSmall:after {
    width: 125px;
    padding-bottom: 125px;
    margin-left: 50%;
}
.circle-textSmall:after {
    content:"";
    display: block;
    width: 250px;
    height: 0;
    padding-bottom: 250px;
    background: #ccc;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    margin-left: 13%;
}