---
title: "Image Alt Text for SEO in Nuxt"
description: "How to write effective image alt text in Nuxt for accessibility, Google Images ranking, and AI model understanding."
canonical_url: "https://nuxtseo.com/learn-seo/nuxt/mastering-meta/alt-text"
last_updated: "2026-05-06T18:47:33.962Z"
---

<key-takeaways>

- Alt text is the [#1 accessibility failure](https://webaim.org/projects/million/) on the web, with 55.1% of homepage images missing it entirely
- Google Images accounts for [22.6% of all internet searches](https://sparktoro.com/blog/google-marketing-live-2019-recap/). Alt text is the primary ranking signal for image results
- `@nuxt/image` handles optimization (resizing, formats, lazy loading) but you still write the alt text
- Google's John Mueller has stated alt text is [not primarily an SEO decision](https://www.searchenginejournal.com/john-mueller-alt-text-is-not-primarily-an-seo-decision/537035/), it is an accessibility one that also helps search

</key-takeaways>

Alt text describes images for screen readers and search engines. Google cannot see your images the way humans do. It reads the `alt` attribute to understand what an image depicts, how it relates to the page, and whether it should appear in [image search results](https://developers.google.com/search/docs/appearance/google-images).

Missing alt text means missing ranking signals and accessibility failures. Every informative image on your site needs a descriptive `alt` attribute.

```html
<img src="/dashboard-screenshot.webp" alt="Nuxt dashboard showing Core Web Vitals scores for mobile and desktop">
```

## Why Alt Text Matters

Google Images handles [22.6% of all internet searches](https://sparktoro.com/blog/google-marketing-live-2019-recap/). Of every 1,000 Google searches, only [374 clicks go to the open web](https://sparktoro.com/blog/for-every-1000-google-searches-only-374-clicks-go-to-the-open-web/). Image search is one of the few channels where visual content can still drive organic traffic directly.

1. **Image search rankings**: Google's [image SEO documentation](https://developers.google.com/search/docs/appearance/google-images) explicitly lists alt text as a key ranking factor for image results.
2. **AI Overviews and citations**: SEMrush's [AI Overview study](https://www.semrush.com/blog/google-sge-study/) found that visual content with proper metadata is more likely to be cited in AI-generated snippets. Descriptive alt text helps AI crawlers understand what your images depict.
3. **Accessibility compliance**: Missing alt text is the [#1 accessibility error](https://webaim.org/projects/million/) across the web. WCAG 2.1 [requires text alternatives](https://www.w3.org/WAI/WCAG21/Understanding/non-text-content.html) for all informative images. The [European Accessibility Act](https://ec.europa.eu/social/main.jsp?catId=1202) became enforceable in June 2025, and the [ADA's web accessibility guidance](https://www.ada.gov/resources/web-guidance/) received updates in 2024. Legal risk is real.
4. **Core Web Vitals**: Images are often the [Largest Contentful Paint (LCP)](https://web.dev/articles/lcp) element. Alt text provides meaningful content to users while the image loads, and screen readers announce it immediately.

## The State of Alt Text on the Web

The [WebAIM Million report](https://webaim.org/projects/million/) audits the top 1,000,000 homepages annually. The results are not encouraging.

<charts-alt-text-quality>



</charts-alt-text-quality>

Over half of all homepage images have no alt text at all. Another 15% use generic strings like "image", "photo", or a raw filename. Fewer than 1 in 4 images have properly descriptive alt text.

### Impact Comparison

<table>
<thead>
  <tr>
    <th>
      Scenario
    </th>
    
    <th>
      Search Result
    </th>
    
    <th>
      Accessibility
    </th>
    
    <th>
      AI Understanding
    </th>
  </tr>
</thead>

<tbody>
  <tr>
    <td>
      <strong>
        Good alt text
      </strong>
      
      : <code>
        alt="Bar chart comparing Nuxt vs Next.js build times"
      </code>
    </td>
    
    <td>
      Image ranks for relevant queries
    </td>
    
    <td>
      Screen reader conveys meaning
    </td>
    
    <td>
      AI understands the data being presented
    </td>
  </tr>
  
  <tr>
    <td>
      <strong>
        Missing alt text
      </strong>
      
      : <code>
        alt=""
      </code>
      
       or no attribute
    </td>
    
    <td>
      Image ignored in search
    </td>
    
    <td>
      Screen reader skips image
    </td>
    
    <td>
      AI has no image context
    </td>
  </tr>
  
  <tr>
    <td>
      <strong>
        Keyword-stuffed
      </strong>
      
      : <code>
        alt="nuxt seo best nuxt framework nuxt optimize"
      </code>
    </td>
    
    <td>
      Potential spam penalty
    </td>
    
    <td>
      Confusing, unhelpful for users
    </td>
    
    <td>
      AI may flag content as low quality
    </td>
  </tr>
</tbody>
</table>

## Writing Effective Alt Text

Good alt text is specific, concise, and describes what the image shows. The W3C provides an [alt text decision tree](https://www.w3.org/WAI/tutorials/images/decision-tree/) for determining the right approach per image type.

**Guidelines:**

- Be specific about what the image depicts, not what you want to rank for
- Include relevant keywords naturally where they fit the description
- Keep under 125 characters. Screen readers may truncate longer text
- Skip "image of" or "photo of" prefixes. Screen readers already announce the element as an image

For deeper technical guidance, see the [WebAIM Alternative Text guide](https://webaim.org/techniques/alttext/).

<code-group>

```html [✅ Correct]
<img src="/hero.webp" alt="Nuxt dashboard showing Core Web Vitals scores">

<img src="/team.webp" alt="Three developers collaborating at a whiteboard with system architecture diagrams">

<img src="/chart.webp" alt="Line graph showing 40% increase in organic traffic after implementing structured data">
```

```html [❌ Wrong]
<!-- Too vague -->
<img src="/hero.webp" alt="image">
<img src="/hero.webp" alt="screenshot">

<!-- Keyword stuffed -->
<img src="/hero.webp" alt="nuxt seo best nuxt seo tool nuxt optimization nuxt framework">

<!-- Empty alt on informative image -->
<img src="/chart.webp" alt="">
```

</code-group>

## Nuxt Implementation

### Static Images with `<NuxtImg>`

The `@nuxt/image` module provides `<NuxtImg>` for optimized images. The `alt` prop works the same as native HTML:

```vue [pages/index.vue]
<template>
  <NuxtImg
    src="/hero.webp"
    alt="Nuxt SEO module configuration panel with sitemap and robots settings"
    width="1200"
    height="600"
    loading="lazy"
  />
</template>
```

For standard `<img>` tags, you don't need anything special:

```vue [pages/about.vue]
<template>
  <img
    src="/team-photo.webp"
    alt="Nuxt SEO team at Vue.js Amsterdam 2025"
    width="800"
    height="400"
  >
</template>
```

### Dynamic Alt Text from API Data

When images come from a CMS or API, bind the alt text dynamically:

```vue [pages/products/[slug].vue]
<script setup lang="ts">
const { slug } = useRoute().params
const { data: product } = await useFetch(`/api/products/${slug}`)
</script>

<template>
  <NuxtImg
    :src="product?.image"
    :alt="product?.imageAlt"
    width="600"
    height="400"
  />
</template>
```

Always store alt text alongside the image URL in your CMS. Generating alt text after the fact is error prone and usually produces vague descriptions.

### Content Images in Markdown

When using `@nuxt/content`, standard markdown image syntax applies:

```md [content/blog/my-post.md]
![Comparison table of SSR vs SSG rendering times in Nuxt](/images/rendering-comparison.png)
```

The text inside the brackets becomes the `alt` attribute in the rendered HTML.

## Decorative vs Informative Images

Not every image needs alt text. The rule: if removing the image would lose information, it needs descriptive alt text. If the image is purely visual decoration, use an empty `alt=""` attribute. The W3C [decision tree](https://www.w3.org/WAI/tutorials/images/decision-tree/) walks through this logic step by step.

### When to Use Empty `alt=""`

<code-group>

```vue [✅ Correct]
<!-- Decorative background pattern -->
<img src="/bg-pattern.svg" alt="">

<!-- Icon next to a text label (label provides context) -->
<span>
  <img src="/icons/check.svg" alt="">
  Task complete
</span>

<!-- Spacer or decorative divider -->
<img src="/divider.svg" alt="">
```

```vue [❌ Wrong]
<!-- Product photo with no alt -->
<img src="/product-shot.webp" alt="">

<!-- Chart that conveys data -->
<img src="/revenue-chart.png" alt="">

<!-- Screenshot showing a specific UI state -->
<img src="/error-modal.png" alt="">
```

</code-group>

### CSS Background Images

Images applied through CSS don't have alt attributes and aren't indexed by Google Images. Use CSS backgrounds for purely decorative visuals:

```vue [components/HeroBanner.vue]
<template>
  <div class="bg-cover bg-center h-96" style="background-image: url('/hero-bg.webp')">
    <h1>Welcome to Nuxt SEO</h1>
  </div>
</template>
```

If a CSS background image conveys information, consider switching to an `<img>` tag with proper alt text instead.

## OG Image Alt Text

When sharing links on social platforms, the `og:image:alt` meta tag describes the preview image for screen readers and assistive technology. Use `useSeoMeta()` to set it:

```vue [pages/blog/[slug].vue]
<script setup lang="ts">
const { data: post } = await useFetch('/api/post')

useSeoMeta({
  ogImage: () => post.value?.ogImage,
  ogImageAlt: () => post.value?.title,
  twitterImage: () => post.value?.ogImage,
  twitterImageAlt: () => post.value?.title,
})
</script>
```

The [Nuxt OG Image module](/docs/og-image/getting-started/introduction) generates dynamic OG images automatically. You still need to set the `ogImageAlt` tag yourself for accessibility. For more on social sharing meta tags, see the [Social Sharing](/learn-seo/nuxt/mastering-meta/open-graph) guide.

## Automated Auditing

Manually checking every image for alt text doesn't scale. Automate it with linting and testing tools.

### ESLint for Vue Templates

The `eslint-plugin-vuejs-accessibility` plugin catches missing alt attributes at development time:

```bash
pnpm add -D eslint-plugin-vuejs-accessibility
```

```ts [eslint.config.ts]
import pluginVueA11y from 'eslint-plugin-vuejs-accessibility'

export default [
  ...pluginVueA11y.configs['flat/recommended'],
]
```

This reports errors when `<img>` or `<NuxtImg>` elements are missing alt attributes in your Vue templates.

### Lighthouse Accessibility Audit

Chrome DevTools Lighthouse checks for missing alt text as part of its accessibility score. Run it against every page to catch issues that linting might miss (dynamic images, CMS content, third party embeds).

### Runtime Testing with axe-core

For complete accessibility testing in CI, `axe-core` scans rendered pages:

```ts [tests/a11y.test.ts]
import AxeBuilder from '@axe-core/playwright'
import { expect, test } from '@playwright/test'

test('homepage has no accessibility violations', async ({ page }) => {
  await page.goto('/')
  const results = await new AxeBuilder({ page }).analyze()
  expect(results.violations).toEqual([])
})
```

This catches missing alt text on dynamically rendered images that static linting cannot detect.

## Common Mistakes

**Prefixing with "image of" or "photo of"**: Screen readers already announce "image" before reading the alt text. Writing `alt="Image of a sunset"` results in "image, Image of a sunset" being read aloud. Write `alt="Sunset over the Pacific Ocean"`.

**Keyword stuffing**: Cramming keywords into alt text can trigger Google's spam filters and provides a terrible screen reader experience. Write for humans first. Google's John Mueller has [explicitly stated](https://www.searchenginejournal.com/john-mueller-alt-text-is-not-primarily-an-seo-decision/537035/) that alt text is primarily an accessibility decision, not an SEO one.

**Empty alt on informative images**: An image that conveys meaning (charts, product photos, screenshots) should never have `alt=""`. Empty alt tells screen readers to skip the image entirely.

**Same alt text on every image**: Using identical alt text across a product gallery (e.g., `alt="Product photo"` on 10 images) provides no useful information. Describe what makes each image unique: the angle, the color variant, the specific feature shown.

**Forgetting alt on <NuxtImg>**: The `<NuxtImg>` component accepts an `alt` prop like a native `<img>` tag. Image optimization doesn't replace the need for descriptive alt text.
