Making a simple tooltip with only HTML and CSS

前端 未结 5 987
闹比i
闹比i 2021-02-06 12:14

I want my tooltip element (the ) to appear above everything on the page but still relative to its parent element (the

5条回答
  •  情歌与酒
    2021-02-06 13:13

    Solution for tooltip ON TOP (always even if no space available)

    .ht:hover .tooltip {
        display:block;
    }
    
    .ht{
      position: relative;
    }
    .tooltip {
        display: none;
        color: red;
        z-index: 1;
      position: absolute;
      top: -50%;
      transform: translatey(-50%);
    }






    Send reminders?
    xaxaxa
    xaxaxa
    xaxaxa this is the tooltip alshdgwh gahfguo wfhg fghwoug wugw hgrwuog hwaur guoarwhg
    sdfaasdfrwu
    sdfaasdfrwu
    sdfaasdfrwu

提交回复
热议问题