What does Google say about SEO? /
Quick SEO Quiz

Test your SEO knowledge in 3 questions

Less than 30 seconds. Find out how much you really know about Google search.

🕒 ~30s 🎯 3 questions 📚 SEO Google

Official statement

With mobile-first indexing, content hidden behind tabs or user interface elements is taken into account for SEO. However, for usability, it's preferable for important content to be immediately visible.
13:01
🎥 Source video

Extracted from a Google Search Central video

⏱ 55:57 💬 EN 📅 03/04/2020 ✂ 23 statements
Watch on YouTube (13:01) →
Other statements from this video 22
  1. 1:36 Le fichier de désaveu fonctionne-t-il vraiment lien par lien au fil du crawl ?
  2. 4:39 Les menus dupliqués mobile/desktop pénalisent-ils vraiment votre SEO ?
  3. 8:21 Faut-il vraiment nofollow les liens entre vos pages de succursales ?
  4. 8:41 Faut-il vraiment placer vos produits phares dans la navigation principale ?
  5. 9:07 Le balisage de données structurées erroné pénalise-t-il vraiment votre référencement ?
  6. 10:20 Faut-il vraiment placer vos pages stratégiques dans la navigation principale pour mieux ranker ?
  7. 11:26 Google ignore-t-il vraiment les données structurées mal balisées sans pénaliser la page ?
  8. 13:42 Le contenu derrière des onglets est-il vraiment indexé en mobile-first ?
  9. 14:36 Google filtre-t-il manuellement les sites médicaux pour garantir la qualité des résultats ?
  10. 16:40 Faut-il abandonner Data Highlighter au profit du JSON-LD ?
  11. 20:09 Les liens en nofollow sont-ils vraiment ignorés par Google pour le SEO ?
  12. 20:19 Google suit-il vraiment les liens nofollow pour découvrir de nouveaux sites ?
  13. 22:42 Les liens JavaScript sans href sont-ils vraiment invisibles pour Google ?
  14. 23:12 Pourquoi Google ignore-t-il vos liens JavaScript mal formatés ?
  15. 27:47 Faut-il vraiment centraliser son contenu pour ranker sur Google ?
  16. 29:55 Le contenu de qualité suffit-il vraiment à générer des liens naturels ?
  17. 30:03 L'autorité de domaine est-elle vraiment inutile pour ranker dans Google ?
  18. 30:16 Pourquoi Google considère-t-il les liens sur sites d'images, petites annonces et plateformes gratuites comme du spam ?
  19. 38:17 Comment Google déclare-t-il vraiment son user-agent lors du crawl ?
  20. 43:06 Google reconnaît-il vraiment tous les formats d'intégration vidéo pour le SEO ?
  21. 44:12 Les cookies tiers bloqués impactent-ils vraiment votre trafic mobile dans Analytics ?
  22. 51:11 Faut-il abandonner la version desktop pour optimiser uniquement la version mobile ?
📅
Official statement from (6 years ago)
TL;DR

Google states that mobile-first indexing considers content hidden behind tabs or accordions. Unlike the old desktop paradigm where this content was devalued, it now fully counts toward the algorithm. However, Mueller reminds us that good usability requires making critical information immediately visible — a balance to strike between design and SEO.

What you need to understand

Why has the doctrine on hidden content changed?

Historically, Google devalued hidden content behind tabs or accordions on desktop. The rationale was simple: if a user doesn't see the information right away, it is likely less important.

With the shift to mobile-first indexing, this rule has flipped. On mobile, hiding content behind interactions (tap, swipe) has become a usability necessity to manage limited screen space. Google has thus adapted its approach: content remains indexable and counts for ranking, as long as it is technically accessible to the crawler.

What does "taken into account" actually mean?

Mueller does not clarify the relative weight given to this hidden content versus immediately visible content. We know it is indexed, that it feeds into the semantic graph of the page, but there is no guarantee it receives the same scoring as a paragraph visible at the top of the page.

Real-world experience shows that keywords placed in a visible H2 at the top of the page generate more ranking than the same keywords buried in the fifth tab of an accordion. The difference can be subtle or massive depending on the industry — impossible to have a universal rule without A/B testing.

What is the difference between visual hiding and technical hiding?

A CSS tab (display:none or visibility:hidden on initial load) remains in the DOM, thus crawlable by Googlebot. This scenario is what Mueller's statement addresses.

In contrast, content loaded solely after a complex JavaScript event (AJAX without server-side rendering, or poorly implemented lazy-load) risks never being seen by the bot. Here, we slip into accidental technical hiding — a different issue.

  • The accordion content present in the initial HTML is indexed, even if the user must click to reveal it.
  • Google places greater value on immediately visible information for relevance and user experience.
  • The shift to mobile-first has aligned indexing with mobile UX practices, where interactive hiding is the norm.
  • No official figures quantify the weight difference between visible content and hidden content — remains a point of uncertainty.
  • Internal testing remains the only way to measure the real impact on your own ranking KPIs.

SEO Expert opinion

Is this statement consistent with real-world observations?

Yes and no. It is indeed observed that pages with rich accordion content rank well on long-tail queries targeting this hidden content. Proof that Google indexes and understands it.

But unexplained performance gaps are also visible. A FAQ page with 20 questions in an accordion may rank poorly, then climb 15 positions after making the first 3 questions visible — without any other changes. [To verify]: the exact weight assigned to hidden content remains opaque, and Mueller provides no figures, ratios, or metrics. We navigate by sight.

What nuances should be applied to this claim?

Mueller cites "usability" as a selection criterion but omits a crucial point: the Core Web Vitals. Displaying all content immediately on mobile may degrade the CLS (cumulative layout shift) and slow down the LCP if images or videos are not lazy-loaded.

In other words, making everything visible right away may harm UX signals that Google also monitors. A paradox that the statement does not resolve. Specifically, the arbitration depends on the nature of the content: text paragraphs may be displayed without concern, but 50 images of products in a grid will negatively impact metrics.

In what cases does this rule not apply?

If your content is dynamically generated by JavaScript after user interaction without server-side rendering, you fall outside the scope of Mueller's statement. Googlebot executes JavaScript, indeed, but with limits: time budgets, execution errors, framework incompatibilities.

Another exception: sites with paywalls or mandatory registration. Here, the content may be technically present in the DOM but locked behind a modal. Google recommends using structured data markup for paid content — without it, indexing remains random. [To verify]: the handling of paywalls frequently evolves and lacks stable documentation.

Caution: if you use heavy JS libraries to manage your tabs (React, Vue with client-side hydration only), check in Search Console that the hidden content appears in Google’s cached version. A delta between what you see in development and what the bot sees is common.

Practical impact and recommendations

What should you do to optimize tabbed content?

Start by auditing the raw HTML: go to "View Page Source" in your browser and look for blocks of content that are supposed to be hidden. If they appear in the initial DOM, you’re good. If they only load after a JS event, you have a crawlability issue.

Next, use the URL Inspection Tool in Search Console. Compare the live rendering with the indexed rendering: if whole blocks are missing, it means Googlebot isn't executing your JS correctly. Switch to SSR (Server-Side Rendering) or pre-render critical components.

What mistakes should be avoided with hidden content?

Never place your unique main content (the page's value proposition) behind a tab that is closed by default. If your page sells management software, the product description must be visible right away — technical specs can go in an accordion.

Avoid duplicating content between visible and hidden versions. Some developers show a visible summary followed by the full version in a tab: Google may interpret this as internal duplicate content or worse, as an attempt at cloaking if the two versions diverge too much.

How to measure the real impact on my ranking?

Set up an A/B test with 50/50 redirection (if your traffic allows): one variant with hidden content, one with everything visible. Track positions on a panel of target keywords for at least 4-6 weeks. Also, check the organic click-through rate: visible content often improves CTR, which indirectly boosts ranking.

If you don't have enough volume for a proper test, do a progressive rollout by category: implement the change on one section of the site, wait 3 weeks, compare KPIs with a control section. It's less precise than A/B, but it mitigates risks.

  • Ensure that the hidden content is present in the initial HTML DOM, not loaded via AJAX post-interaction.
  • Use the Search Console URL Inspection to compare live rendering and indexed rendering.
  • Place critical information (H1, value proposition, main CTA) as immediately visible content.
  • Reserve tabs for secondary content: detailed FAQs, technical specs, extensive legal notices.
  • Monitor the Core Web Vitals after any layout change: displaying more content may degrade CLS and LCP.
  • Test the impact on a panel of target queries before generalizing to the entire site.
Mobile-first indexing has made hidden content technically crawlable, but its relative weight in the algorithm remains unclear. The optimal strategy is to immediately display high-value information while maintaining mobile ergonomics through accordions for the rest. These trade-offs between SEO, UX, and technical performance can become complex at scale — in such cases, working with a specialized SEO agency can help audit rendering, conduct rigorous A/B tests, and adjust the strategy based on your actual business KPIs.

❓ Frequently Asked Questions

Le contenu en accordéon compte-t-il autant que le contenu visible pour le ranking ?
Google affirme l'indexer pleinement, mais aucune donnée publique ne quantifie son poids relatif. Les observations terrain suggèrent qu'il compte moins que le contenu immédiatement visible, surtout pour les requêtes compétitives.
Dois-je éviter totalement les onglets pour ne pas perdre en SEO ?
Non. Les onglets et accordéons restent utiles pour l'ergonomie mobile. L'enjeu est de placer le contenu principal visible d'emblée et de reléguer les informations secondaires en onglets.
Comment vérifier que Googlebot voit bien mon contenu masqué ?
Utilise l'outil d'inspection d'URL dans la Search Console et compare le HTML rendu par Google avec ta page live. Si des blocs manquent, c'est un problème d'exécution JavaScript ou de chargement différé.
Les FAQs en accordéon sont-elles éligibles au rich snippet FAQ ?
Oui, à condition d'ajouter le balisage Schema.org FAQPage. Le fait que les réponses soient masquées par défaut n'empêche pas l'affichage du rich snippet si le HTML structuré est présent.
Y a-t-il un risque de pénalité pour contenu masqué ?
Non, tant que le contenu est identique pour les utilisateurs et pour Googlebot. Le risque de cloaking apparaît si tu affiches un texte différent selon le user-agent — ce qui est une violation des guidelines.
🏷 Related Topics
Content Crawl & Indexing AI & SEO Mobile SEO Pagination & Structure

🎥 From the same video 22

Other SEO insights extracted from this same Google Search Central video · duration 55 min · published on 03/04/2020

🎥 Watch the full video on YouTube →

Related statements

💬 Comments (0)

Be the first to comment.

2000 characters remaining
🔔

Get real-time analysis of the latest Google SEO declarations

Be the first to know every time a new official Google statement drops — with full expert analysis.

No spam. Unsubscribe in one click.