tooltips for Button

前端 未结 8 1835
一整个雨季
一整个雨季 2020-12-01 02:31

Is it possible to create a tooltip for an html button. Its the normal HTML button and there is no Title attribute as it is there for some html controls. Any thoughts or comm

8条回答
  •  既然无缘
    2020-12-01 03:09

    The title attribute is meant to give more information. It's not useful for SEO so it's never a good idea to have the same text in the title and alt which is meant to describe the image or input is vs. what it does. for instance:

    
    
    HMS Beagle painting
    

    The title attribute will make a tool tip, but it will be controlled by the browser as far as where it shows up and what it looks like. If you want more control there are third party jQuery options, many css templates such as Bootstrap have built in solutions, and you can also write a simple css solution if you want. check out this w3schools solution.

提交回复
热议问题