아이콘에 마우스를 가져다대면, tip 말풍선을 보여주는 UI를 자주 볼 수 있습니다. 위의 사진과같은 기능은 CSS만으로도 구현이 가능합니다. HTML 원하는 tip 메세지 CSS .container { position: relative; } .tip{ position: absolute; top: 8px; left: 55px; font-size: 14px; line-height: 26px; text-align: center; background-color: #b3dfe6; border-radius: 50%; width: 24px; height: 24px; cursor: default; } .tip:before{ content:'?'; font-weight: bold; color:#fff; } .tip:h..