Reputation: 31
I am designing a website where I have used a simple html page and inside it I have added a title tag. This title tag appears in every browser.
However, it does not work when I hover mouse over the tab in chrome.
Below is the sample code:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Hello</title>
<link rel="stylesheet" href="">
</head>
<body>
</body>
</html>
Can anybody suggest where am I going wrong ??
Upvotes: 2
Views: 3411
Reputation: 13516
Note that Chrome tab tooltips don't appear to work over TeamViewer or RDP:
https://bugs.chromium.org/p/chromium/issues/detail?id=389380#c78
Upvotes: 0
Reputation: 293
Is it simply because the title value is too short to fire a tooltip?
Make the title <title>really long title here .... Hello</title>
and see what happens
Upvotes: 1
Reputation: 1156
Your title is too small to be seen over hover. Hover yellow block appears because you don't see the whole title of the tab
Upvotes: 1