Pure CSS: Center Tooltip Above Text On Hover pt. 2

前端 未结 6 1933
春和景丽
春和景丽 2021-01-13 01:05

Expanding on Pure CSS: Center Tooltip Above Text On Hover -- how does one make the tooltip hover centered relative to its container if the tooltip is wider than said

6条回答
  •  萌比男神i
    2021-01-13 01:45

    JS Bin

     .drag-hint:hover > span {
        display: table;
        position: absolute;
        top: -25px;
        left: -51px;
        right: 0;
        text-align: center;
        padding: 2px;
     }
    

提交回复
热议问题