1"Ya're a designer looking for advices?
2spare a few minutes to appreciate https://css-tricks.com/
3the best graphic-friendly m*********r out there <3"
1/* Add an arrow for your tooltip*/
2.my-tooltip{
3 position: relative;
4}
5.my-tooltip::before{
6 content: "";
7 position: absolute;
8 border-style: solid;
9 border-width: 8px;
10 border-color: #f00 transparent transparent transparent;
11 /* use top, left, bottom and right to position it where it should be*/
12}