Structure d’une boîte de dialogue modale
Créez une fenêtre modale centrée avec un arrière-plan de superposition, une zone de contenu défilante et un bouton de fermeture grâce au positionnement fixe et aux utilitaires z-index.
Structure d’une boîte de dialogue modale est une leçon Tailwind CSS Academy gratuite sur CoddyKit. Ceci est la leçon 1 sur 4. Tu peux lire la leçon complète ci-dessous gratuitement — puis la pratiquer en direct dans le navigateur avec un éditeur de code intégré et un tuteur IA 24/7. Elle fait partie du parcours d'apprentissage Tailwind CSS Academy, et ta progression se synchronise sur le web et l'application CoddyKit. Le cours Tailwind CSS Academy comprend 4 leçons au total.
Certaines parties de cette leçon n'ont pas encore été traduites et s'affichent en anglais.
What Is a Modal Dialog
A modal dialog is an overlay panel that appears on top of the page to capture the user's attention for a specific task — confirmation, a form, or detailed information — before returning them to the underlying page.
A modal consists of three parts: a backdrop overlay that dims the background, the dialog panel centered on screen, and a close mechanism (a button, Escape key, or backdrop click). All three must work together for a polished, accessible component.
Full-Screen Backdrop Overlay
The backdrop dims the page content behind the modal, focusing the user's attention on the dialog. Use fixed inset-0 bg-black/50 z-40 to cover the entire viewport with a 50% opaque black layer.
The backdrop should be a separate element from the dialog panel so you can independently animate them. Clicking the backdrop should close the modal — this is achieved with a JavaScript click handler on the backdrop element.
<div
id="modal-backdrop"
class="fixed inset-0 bg-black/50 z-40"
onclick="closeModal()">
</div>Centering the Dialog Panel
The dialog panel sits inside a centering container that uses fixed inset-0 flex items-center justify-center z-50 p-4. This container covers the full viewport as a flex container that centers its single child — the dialog box — both horizontally and vertically.
The p-4 ensures the dialog has breathing room from the screen edges on small screens, preventing it from touching the sides on mobile devices.
<!-- Centering container -->
<div class="fixed inset-0 flex items-center justify-center z-50 p-4">
<!-- Dialog panel -->
<div class="bg-white rounded-2xl shadow-2xl w-full max-w-lg">
<!-- Modal content -->
</div>
</div>Dialog Header With Close Button
The modal header contains the dialog title and a close button. Use flex items-center justify-between px-6 py-4 border-b border-gray-100 to space the title and close button on opposite ends of the header row.
The title uses text-lg font-semibold text-gray-900 and the close button is a small icon button at the far right. The button must have an aria-label='Close modal' for screen reader users who cannot see the × icon.
<div class="flex items-center justify-between px-6 py-4 border-b border-gray-100">
<h2 class="text-lg font-semibold text-gray-900" id="modal-title">
Confirm Action
</h2>
<button
onclick="closeModal()"
aria-label="Close modal"
class="p-1 text-gray-400 hover:text-gray-600 hover:bg-gray-100
rounded-lg transition-colors">
<svg class="w-5 h-5" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12"/>
</svg>
</button>
</div>Dialog Body Content
The modal body holds the main content of the dialog. Use px-6 py-5 for comfortable padding. For long content, constrain the height with max-h-96 overflow-y-auto so the modal does not grow taller than the viewport.
Body text uses text-sm text-gray-600 leading-relaxed for readable paragraph spacing. Add icons or illustrations for visual clarity in confirmation and alert dialogs.
<div class="px-6 py-5">
<div class="flex items-start gap-4">
<!-- Warning icon -->
<div class="flex-shrink-0 w-12 h-12 rounded-full bg-red-100 flex items-center justify-center">
<svg class="w-6 h-6 text-red-600" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z"/>
</svg>
</div>
<div>
<p class="text-base font-semibold text-gray-900">Delete this record?</p>
<p class="mt-1 text-sm text-gray-600 leading-relaxed">
This action cannot be undone. All data associated with this record will be permanently removed from our servers.
</p>
</div>
</div>
</div>Dialog Footer With Action Buttons
The modal footer holds the action buttons. Use flex items-center justify-end gap-3 px-6 py-4 border-t border-gray-100 to right-align the buttons and visually separate them from the body content.
Place the secondary action (Cancel) to the left of the primary action (Confirm/Delete) to match the spatial convention of safe action on the left and destructive action on the right.
<div class="flex items-center justify-end gap-3 px-6 py-4 border-t border-gray-100">
<button
onclick="closeModal()"
class="px-4 py-2 text-sm font-semibold text-gray-700 border border-gray-300
rounded-lg hover:bg-gray-50 transition-colors">
Cancel
</button>
<button
class="px-4 py-2 text-sm font-semibold text-white bg-red-600
rounded-lg hover:bg-red-700 transition-colors">
Delete Record
</button>
</div>Showing and Hiding the Modal
The modal starts hidden with hidden on both the backdrop and the centering container. When triggered, JavaScript removes hidden from both elements and adds overflow-hidden to the body to prevent background scrolling while the modal is open.
The close function reverses all three operations. Connect the trigger to any button with an onclick handler.
<script>
const modal = document.getElementById('modal');
const backdrop = document.getElementById('modal-backdrop');
function openModal() {
modal.classList.remove('hidden');
backdrop.classList.remove('hidden');
document.body.classList.add('overflow-hidden');
}
function closeModal() {
modal.classList.add('hidden');
backdrop.classList.add('hidden');
document.body.classList.remove('overflow-hidden');
}
// Escape key closes the modal
document.addEventListener('keydown', (e) => {
if (e.key === 'Escape') closeModal();
});
</script>Scrollable Modal for Long Content
When modal content is longer than the available viewport height, make only the body scrollable while the header and footer remain fixed. Apply max-h-screen overflow-hidden flex flex-col to the dialog panel, and flex-1 overflow-y-auto to the body section.
This prevents the modal from growing off-screen and keeps the action buttons always visible without the user needing to scroll past the content.
<div class="fixed inset-0 flex items-center justify-center z-50 p-4">
<div class="bg-white rounded-2xl shadow-2xl w-full max-w-lg
max-h-[90vh] flex flex-col">
<!-- Fixed header -->
<div class="flex items-center justify-between px-6 py-4 border-b border-gray-100 flex-shrink-0">
<h2 class="text-lg font-semibold">Terms of Service</h2>
<button onclick="closeModal()" aria-label="Close">×</button>
</div>
<!-- Scrollable body -->
<div class="flex-1 overflow-y-auto px-6 py-5">
<p class="text-sm text-gray-600 leading-relaxed">
Very long terms of service content that may exceed the viewport height...
<!-- many paragraphs -->
</p>
</div>
<!-- Fixed footer -->
<div class="flex justify-end gap-3 px-6 py-4 border-t border-gray-100 flex-shrink-0">
<button onclick="closeModal()" class="px-4 py-2 text-sm font-semibold text-gray-700 border border-gray-300 rounded-lg">Decline</button>
<button class="px-4 py-2 text-sm font-semibold text-white bg-blue-600 rounded-lg">Accept</button>
</div>
</div>
</div>Modal Size Variants
Modals come in different sizes depending on their content. Control the size with max-w-* on the dialog panel:
- Small:
max-w-sm— for simple confirmation dialogs - Medium:
max-w-lg— for forms and moderate content - Large:
max-w-2xl— for detailed views or complex forms - Full:
max-w-5xl— for image viewers or rich content
Always include a minimum w-full so the modal shrinks appropriately on small screens even when the max-width is large.
<!-- Small modal -->
<div class="bg-white rounded-xl shadow-2xl w-full max-w-sm p-6">
<p class="text-sm text-gray-700">Are you sure?</p>
<div class="flex justify-end gap-3 mt-4">
<button class="px-3 py-1.5 text-xs font-semibold border border-gray-300 rounded-lg">No</button>
<button class="px-3 py-1.5 text-xs font-semibold text-white bg-red-600 rounded-lg">Yes, delete</button>
</div>
</div>ARIA Roles for Modal Accessibility
An accessible modal requires specific ARIA attributes. Add role='dialog' aria-modal='true' to the dialog panel so screen readers know it is a modal and that the rest of the page content is inert.
Link the dialog's title to the panel with aria-labelledby pointing to the heading's id. This allows screen readers to announce the dialog name when focus moves into it. For modals without a visible title, use aria-label on the dialog element directly.
<div
role="dialog"
aria-modal="true"
aria-labelledby="dlg-title"
class="bg-white rounded-2xl shadow-2xl w-full max-w-lg">
<div class="flex items-center justify-between px-6 py-4 border-b border-gray-100">
<h2 id="dlg-title" class="text-lg font-semibold text-gray-900">
Confirm Deletion
</h2>
<button onclick="closeModal()" aria-label="Close dialog" class="p-1 text-gray-400 hover:text-gray-600 rounded-lg">×</button>
</div>
<div class="px-6 py-5">
<p class="text-sm text-gray-600">This will permanently delete the selected item.</p>
</div>
<div class="flex justify-end gap-3 px-6 py-4 border-t border-gray-100">
<button onclick="closeModal()" class="px-4 py-2 text-sm font-semibold border border-gray-300 rounded-lg">Cancel</button>
<button class="px-4 py-2 text-sm font-semibold text-white bg-red-600 rounded-lg">Delete</button>
</div>
</div>Putting the Full Modal Together
A complete modal implementation has two HTML sections: the backdrop and the centering container with the dialog panel inside. Both start hidden with hidden.
The trigger button is somewhere in the page content. When clicked, both elements are shown, body scroll is locked, and focus moves into the modal. When dismissed (button, backdrop, or Escape), both elements are hidden again and body scroll is restored.
<!-- Trigger -->
<button onclick="openModal()" class="px-4 py-2 bg-red-600 text-white text-sm font-semibold rounded-lg">Delete Account</button>
<!-- Backdrop -->
<div id="modal-backdrop" onclick="closeModal()"
class="hidden fixed inset-0 bg-black/50 z-40"></div>
<!-- Dialog -->
<div id="modal" role="dialog" aria-modal="true" aria-labelledby="m-title"
class="hidden fixed inset-0 flex items-center justify-center z-50 p-4">
<div class="bg-white rounded-2xl shadow-2xl w-full max-w-md">
<div class="flex items-center justify-between px-6 py-4 border-b border-gray-100">
<h2 id="m-title" class="text-lg font-semibold text-gray-900">Delete Account</h2>
<button onclick="closeModal()" aria-label="Close" class="p-1 text-gray-400 hover:text-gray-600 rounded">×</button>
</div>
<div class="px-6 py-5">
<p class="text-sm text-gray-600">Are you sure? This cannot be undone.</p>
</div>
<div class="flex justify-end gap-3 px-6 py-4 border-t border-gray-100">
<button onclick="closeModal()" class="px-4 py-2 text-sm font-semibold border border-gray-300 rounded-lg">Cancel</button>
<button class="px-4 py-2 text-sm font-semibold text-white bg-red-600 rounded-lg">Delete</button>
</div>
</div>
</div>Quick Check
Test your understanding of Tailwind CSS Mastery concepts from this lesson.
Lesson Recap
In this lesson you learned: modal structure consists of a backdrop overlay (fixed inset-0 bg-black/50 z-40) and a centering container (fixed inset-0 flex items-center justify-center z-50) with the dialog panel inside; scrollable modals use flex flex-col max-h-[90vh] with flex-1 overflow-y-auto on the body; and ARIA attributes role='dialog' aria-modal='true' aria-labelledby are required for screen reader accessibility. Next up we animate modal open and close transitions.
Questions Fréquemment Posées
La leçon « Structure d’une boîte de dialogue modale » est-elle gratuite ?
Oui — le texte complet de « Structure d’une boîte de dialogue modale » est gratuit à lire ici sur le web. Pour la pratiquer de manière interactive (un éditeur de code intégré et un tuteur IA 24/7) et déverrouiller le reste du cours Tailwind CSS Academy, passe à CoddyKit PRO. Le cours Tailwind CSS Academy comprend 4 leçons au total.
Qu'est-ce que j'apprendrai dans « Structure d’une boîte de dialogue modale » ?
Créez une fenêtre modale centrée avec un arrière-plan de superposition, une zone de contenu défilante et un bouton de fermeture grâce au positionnement fixe et aux utilitaires z-index. Tu pratiques Tailwind CSS Academy avec du code pratique que tu exécutes directement dans le navigateur, et un tuteur IA 24/7 répond à tes questions au fur et à mesure que tu avances dans la leçon.
Dois-je avoir de l'expérience pour commencer Tailwind CSS Academy ?
Aucune expérience préalable n'est requise. Tailwind CSS Academy sur CoddyKit est structuré pour les débutants jusqu'aux apprenants avancés, donc tu peux commencer ici ou depuis le début et avancer à ton rythme. Ceci est la leçon 1 sur 4.
Combien de temps prend la leçon « Structure d’une boîte de dialogue modale » ?
La plupart des leçons CoddyKit prennent environ 5–10 minutes. Chacune est courte et interactive, tu progresses régulièrement et tu repiques exactement où tu t'es arrêté sur le web et l'app.
Peux-tu écrire et exécuter du code dans cette leçon Tailwind CSS Academy ?
Oui. Chaque leçon Tailwind CSS Academy inclut un éditeur de code intégré, tu écris et exécutes du vrai code directement dans ton navigateur et tu reçois des retours IA instantanés — aucune configuration locale requise.
Toutes les leçons de ce cours
- Structure d’une boîte de dialogue modale
- Animation d’ouverture et de fermeture d’une fenêtre modale
- Composant de menu déroulant
- Fenêtres modales et menus déroulants accessibles