Max length of Title Attribute

后端 未结 6 891
星月不相逢
星月不相逢 2020-12-05 09:15

What is the length limitation of HTML title attribute?


         


        
6条回答
  •  星月不相逢
    2020-12-05 10:15

    There is no limit in the specifications, but when you go past 48 characters, browsers will treat it differently—IE breaks the text to two or more lines, whereas Firefox doesn’t. Firefox doesn’t honor explicit line breaks in source (this is, debatably, correct behavior).

    So the practical conclusion is: if you need to ask, it’s too long, and you should use some other technique. The title attribute is normally used for the “tooltip” effect, and similar effects can be created (with better usability) using CSS (and possibly JavaScript).

提交回复
热议问题