Skip to content

useIframeTitle (HTML)

biome.json
{
"linter": {
"rules": {
"a11y": {
"useIframeTitle": "error"
}
}
}
}

Enforces the usage of the attribute title for the element iframe.

<iframe></iframe>
code-block.html:1:1 lint/a11y/useIframeTitle ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

Provide a title attribute when using iframe elements.

> 1 │ <iframe></iframe>
^^^^^^^^
2 │

Screen readers rely on the title set on an iframe to describe the content being displayed.

<iframe title=""></iframe>
code-block.html:1:1 lint/a11y/useIframeTitle ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

Provide a title attribute when using iframe elements.

> 1 │ <iframe title=""></iframe>
^^^^^^^^^^^^^^^^^
2 │

Screen readers rely on the title set on an iframe to describe the content being displayed.

<iframe title="title"></iframe>