Вывод блока-подсказки сбоку справа

by Alexander Lashchevsky

HTML

<div class="tooltip">1</div>

CSS

.tooltip {background: #000; border-radius: 10px; padding: 10px; margin-left: 20px; position: relative; color: #fff; border: 1px solid red; width: 200px;}
.tooltip::after {content: '';  position: absolute; left: -25px; top: 20px; border: 12px solid transparent; border-right: 12px solid red;}