Tooltip on click of a button

后端 未结 7 1002
执笔经年
执笔经年 2021-01-01 20:31

I\'m using clipboard.js to copy some text from a textarea, and that\'s working fine, but I want to show a tooltip saying \"Copied!\" if it was successfully copi

7条回答
  •  暖寄归人
    2021-01-01 21:19

    *[tooltip]:focus:after {
      content: attr(tooltip);
      display:block;
      position: absolute;    
    }
    
    

    Link

提交回复
热议问题