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

前端 未结 6 1949
春和景丽
春和景丽 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:31

    Try with modified below code in your code.

    .drag-hint:hover > span {
      display: inline;
      position:absolute;
      top: -25px;
      left: 0;
      right: 0;
      text-align: center;
      width:200px;
     }
    

提交回复
热议问题