Aug. 30, 2026
11:31 a.m.
Hi,
So, is this it fixable?
You can add a container with display:none, like this: <!doctype html> <html> <head> <title>Hidden dialog</title> <style> .hidden { display: none; } </style> </head> <body> <div class=hidden> <dialog>This won't be displayed.</dialog> </div> </body> </html> Notice that you shouldn't not rely on content not being displayed, many people browse with no styles enabled. Best, Rodrigo.