CSS Baloons

by ischenkodv

HTML

<div class="tooltip">
    <div>Some text goes here.</div>
</div>
<br><br>
<div class="tooltip">
    <div>Another tooltip.</div>
</div>

CSS

body {
    background: #3bc1e7;
    padding: 2em;
}

.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip div {
    display: inline-block;
    padding:  20px;
    border-radius: 10px;
    background: #fff;
    font-size: 18px;
}
.tooltip div:after {
    width: 0;
    height: 0;
    content: '';
    position: absolute;
    bottom: -20px;
    right: 20px;
    border: solid transparent;
    border-top-color: white;
    border-width: 10px;
}