/ seo-glossary / What are Featured Snippets? SEO Guide for Beginners
seo-glossary 7 min read

What are Featured Snippets? SEO Guide for Beginners

Learn what featured snippets mean in SEO, why they matter, and how to use them to improve your search rankings.

What are Featured Snippets? SEO Guide for Beginners

Featured snippets are special search results that appear at the very top of Google, above all organic listings, in a highlighted box. Google describes them as boxes where "the format of a regular search result is reversed, showing the descriptive snippet first," with Google pulling a direct answer from a web page so users can get their answer at a glance. They are sometimes called "position zero" because they sit above the traditional number one spot. Per Google Search Central, you cannot mark up or request a featured snippet for your page. Google systems determine whether a page would make a good featured snippet for a user's search request, and if so, elevate it.

Winning a featured snippet can lift your visibility, though the effect is more nuanced than it first appears. Ahrefs studied roughly 2 million featured snippets and found that when a snippet is present, the snippet itself takes about 8.6 percent of clicks, while the page ranking right below it takes about 19.6 percent. In other words, the snippet skims some traffic off the top organic result rather than replacing it entirely. The same study found featured snippets appeared on about 12.29 percent of the search queries Ahrefs analyzed, so they are common but far from universal.

Featured snippets are also a source Google can draw from for voice answers and AI-generated summaries. If you hold the snippet, your content is well positioned to be surfaced in those answer surfaces too.

For smaller sites, snippets are a real opportunity. You do not always need to rank number one to win one. Ahrefs found that only about 30.9 percent of featured snippets were pulled from the page ranking first for that query, meaning the large majority came from pages ranking below the top spot. So even if a bigger competitor holds position one, properly structured content can leapfrog them into the snippet box.

Google selects snippet content algorithmically by matching the user's query to content that provides a clear, concise answer. There are four main types.

Paragraph snippets are the most common (about 70%). Google extracts a 40-60 word text block that directly answers a question. These usually appear for "what is" and "why" queries.

List snippets (ordered and unordered) appear for step-by-step instructions or item collections. Google either pulls an existing list from your page or constructs one from your headings. Common for "how to" and "best of" queries.

Table snippets pull structured data from HTML tables. Google might even rearrange or filter the data to better answer the query. Price comparisons and feature lists often trigger these.

Video snippets show a YouTube video with a suggested clip timestamp. These appear for queries where a visual demonstration is most helpful.

Google decides to show a snippet based on query type. Questions, definitions, comparisons, and processes are the most common triggers. You can identify snippet opportunities by searching your target keywords and noting which ones currently have snippets.

  1. Target questions that already trigger snippets - Use tools like Semrush or Ahrefs to find keywords where you rank on page one that currently have a featured snippet. These are your best opportunities since you already have ranking authority. Filter for question-based queries.

  2. Structure your answer in the snippet-friendly format - For paragraph snippets, write a clear 40-60 word definition immediately after the H2 that contains the question. For list snippets, use proper HTML lists or structure your content with sequential H3 subheadings. For table snippets, use actual HTML table elements.

  • Use the question as an H2, then answer it directly - Google loves the pattern of an H2 heading phrased as a question followed by a concise paragraph answer. Put the full answer in the first 2-3 sentences, then elaborate below. Do not bury the answer under paragraphs of introduction.

  • Add "is-ness" statements for definition queries - For "what is X" queries, include a sentence that starts with "X is..." right after the heading. This pattern matches what Google looks for when extracting paragraph snippets.

  • Provide more comprehensive content than the current snippet holder - Google wants the best answer, not just a short one. If the current snippet is thin, write a more detailed, better-structured answer on a page that covers the full topic thoroughly.

  • Common Mistakes to Avoid

    • Writing answers that are too long or too short: Paragraph snippets typically contain 40-60 words. If your answer is 150 words, Google has to cut it awkwardly. If it is 15 words, it might not be comprehensive enough. Aim for that sweet spot.

    • Not using proper HTML structure: Lists need to be actual <ul> or <ol> elements, not just lines of text with dashes. Tables need to be <table> elements. Google parses HTML structure, so formatting matters.

    • Ignoring the snippet after winning it: Snippets can be volatile. Competitors optimize for them too. Monitor your snippet positions monthly and refresh your content if you lose one.

    Key Takeaways

    • Featured snippets appear above organic results and capture roughly 8.6 percent of clicks for a query, per Ahrefs
    • You do not need to rank number one to win a snippet, around 69 percent of snippets come from pages not ranking first
    • You cannot mark up a page to request a snippet, but you can opt out with nosnippet, max-snippet, or data-nosnippet
    • Structure content with clear H2 questions followed by concise, direct answers

    In Practice

    Suppose you want to win the paragraph snippet for the query "what is a canonical tag." You phrase your H2 as the question and lead with a tight, self-contained definition right under it.

    <h2>What Is a Canonical Tag?</h2>
    <p>A canonical tag is an HTML link element that tells search engines
    which version of a URL is the preferred one to index when the same or
    near-identical content is reachable at multiple addresses. It uses the
    syntax rel="canonical" inside a link tag in the page head.</p>
    

    That answer is one focused sentence plus a clarifying second sentence, which fits the short, extractable block Google favors for definition queries. You then elaborate with examples below it.

    If you ever need to keep a page out of the featured snippet box, you do not edit the snippet itself. You constrain what Google may extract. To block all snippets for a page, add the nosnippet rule:

    <meta name="robots" content="nosnippet">
    

    To allow a normal short snippet but make a featured snippet unlikely, cap the extractable length. Google notes that the shorter your max-snippet value, the less likely the page appears as a featured snippet, and that max-snippet:0 is equivalent to nosnippet while max-snippet:-1 lets Google choose:

    <meta name="robots" content="max-snippet:20">
    

    To exclude only one passage while keeping the rest of the page eligible, wrap that passage with the data-nosnippet attribute, which is valid on span, div, and section elements:

    <p>This text can be shown in a snippet
    <span data-nosnippet>and this part would not be shown</span>.</p>
    

    Sources