Skip to content

Bits of .NET

Daily micro-tips for C#, SQL, performance, and scalable backend engineering.

  • Asp.Net Core
  • C#
  • SQL
  • JavaScript
  • CSS
  • About
  • ErcanOPAK.com
  • No Access
  • Privacy Policy
HTML

HTML: Use Native Dialog Element for Modals Without JavaScript Libraries

- 28.05.26 - ErcanOPAK

📱 Built-in Modal, No Library

<dialog> element creates native modals. Accessibility, focus management, backdrop — all built-in. No more 100KB modal libraries.

📝 Basic Dialog

<dialog id="myDialog">
  <h2>Confirm Action</h2>
  <p>Are you sure you want to delete this item?</p>
  <form method="dialog">
    <button value="cancel">Cancel</button>
    <button value="confirm">Confirm</button>
  </form>
</dialog>

<button onclick="myDialog.showModal()">Open Modal</button>

<script>
  myDialog.addEventListener('close', () => {
    console.log('Closed with:', myDialog.returnValue);
  });
</script>

🎯 Styling Dialog

dialog {
  border: none;
  border-radius: 16px;
  padding: 20px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 20px 35px -10px rgba(0,0,0,0.3);
}

/* Backdrop (overlay) */
dialog::backdrop {
  background-color: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
}

/* Animation */
dialog[open] {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

✅ Methods

// Show as modal (with backdrop, prevents background interaction)
dialog.showModal();

// Show as non-modal (no backdrop, background still interactive)
dialog.show();

// Close programmatically
dialog.close();

// Close with return value
dialog.close('confirmed');

// Check if open
dialog.open // boolean

// Close on ESC automatically (built-in!)

💡 Accessibility Built-in

  • Focus trapped inside dialog automatically
  • ESC key closes dialog by default
  • Focus returns to triggering element on close
  • ARIA attributes added automatically
  • Keyboard navigation works out of box

“Removed Bootstrap modal (40KB). Added <dialog>. Works perfectly, accessible, lighter. Native HTML wins again.”

— Frontend Developer

Related posts:

HTML: Use Inputmode to Show the Right Mobile Keyboard

HTML5 Forms: The Built-In Validation That Replaced jQuery Validate

HTML5 — Must Be First

Post Views: 7

Post navigation

CSS: Use :has() Selector to Style Parent Elements Based on Children
JavaScript: Use Top-Level Await in Modules for Cleaner Async Code

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

June 2026
M T W T F S S
1234567
891011121314
15161718192021
22232425262728
2930  
« May    

Most Viewed Posts

  • Get the User Name and Domain Name from an Email Address in SQL (953)
  • How to add default value for Entity Framework migrations for DateTime and Bool (882)
  • Get the First and Last Word from a String or Sentence in SQL (838)
  • How to select distinct rows in a datatable in C# (808)
  • How to make theater mode the default for Youtube (805)
  • Add Constraint to SQL Table to ensure email contains @ (580)
  • How to enable, disable and check if Service Broker is enabled on a database in SQL Server (579)
  • Average of all values in a column that are not zero in SQL (538)
  • How to use Map Mode for Vertical Scroll Mode in Visual Studio (505)
  • Find numbers with more than two decimal places in SQL (454)

Recent Posts

  • C#: Use String Interpolation Instead of Concatenation
  • C#: Use Tuples to Return Multiple Values from Methods
  • SQL: Use ISNULL and NULLIF for Smart NULL Handling
  • .NET Core: Use Data Annotations for Model Validation
  • Git: Use Git Clean to Remove Untracked Files
  • Ajax: Add Custom Headers to Fetch Requests
  • JavaScript: Use console.table to Display Arrays as Tables
  • HTML: Use Spellcheck Attribute to Enable Browser Spell Check
  • CSS: Use user-select to Prevent Text Selection
  • Windows 11: Use Snipping Tool for Instant Screenshots

Most Viewed Posts

  • Get the User Name and Domain Name from an Email Address in SQL (953)
  • How to add default value for Entity Framework migrations for DateTime and Bool (882)
  • Get the First and Last Word from a String or Sentence in SQL (838)
  • How to select distinct rows in a datatable in C# (808)
  • How to make theater mode the default for Youtube (805)

Recent Posts

  • C#: Use String Interpolation Instead of Concatenation
  • C#: Use Tuples to Return Multiple Values from Methods
  • SQL: Use ISNULL and NULLIF for Smart NULL Handling
  • .NET Core: Use Data Annotations for Model Validation
  • Git: Use Git Clean to Remove Untracked Files

Social

  • ErcanOPAK.com
  • GoodReads
  • LetterBoxD
  • Linkedin
  • The Blog
  • Twitter
© 2026 Bits of .NET | Built with Xblog Plus free WordPress theme by wpthemespace.com