---
source: crates/biome_js_analyze/tests/spec_tests.rs
expression: invalid.jsx
---
# Input
```jsx
```
# Diagnostics
```
invalid.jsx:3:5 lint/a11y/noDistractingElements FIXABLE ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
! Don't use the 'marquee' element.
1 │
2 │
> 3 │
│ ^^^^^^^^^^^
4 │
5 │
i Visually distracting elements can cause accessibility issues and should be avoided.
i Unsafe fix: Remove the 'marquee' element.
3 │ ····
│ -----------
```
```
invalid.jsx:4:5 lint/a11y/noDistractingElements FIXABLE ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
! Don't use the 'blink' element.
2 │
3 │
> 4 │
│ ^^^^^^^^^
5 │
6 │
i Visually distracting elements can cause accessibility issues and should be avoided.
i Unsafe fix: Remove the 'blink' element.
4 │ ····
│ ---------
```