📅  最后修改于: 2022-03-11 14:47:33.203000             🧑  作者: Mango
/* Add an arrow for your tooltip*/
.my-tooltip{
position: relative;
}
.my-tooltip::before{
content: "";
position: absolute;
border-style: solid;
border-width: 8px;
border-color: #f00 transparent transparent transparent;
/* use top, left, bottom and right to position it where it should be*/
}