[i18n-drafts] [questions/qa-html-language-declarations] BRIEF_TITLE_GOES_HERE (#237)

vmukhachev has just created a new issue for https://github.com/w3c/i18n-drafts:

== [questions/qa-html-language-declarations]  BRIEF_TITLE_GOES_HERE ==
[source] (https://www.w3.org/International/questions/qa-html-language-declarations) [en]

The webpage recommends to use the next markup when "title" attribute contains a text in page lang, while the content of the link in different lang:
```html
<span title="Spanish"><a lang="es" href="qa-html-language-declarations.es">Español</a></span>
```

Why not to recommend to use the next markup:
```html
<a title="Spanish" href="qa-html-language-declarations.es"><span lang="es">Español</span></a>
```
?
In the later case the `title` is placed on the interactive element, which could work better. At least, Chrome's browser's developer tools show it as a "description" of the link.


Please view or discuss this issue at https://github.com/w3c/i18n-drafts/issues/237 using your GitHub account

Received on Monday, 3 February 2020 11:43:37 UTC