blob: 01eff8c4de5f1f5e6a951f177fd0e920ca289d4b [file] [log] [blame] [edit]
<!DOCTYPE html>
<style>
dialog {
background-color: green;
height: 50px;
width: 50px;
border: none;
padding: 0;
margin: 0;
position: absolute;
top: 100px;
left: 100px;
}
</style>
<dialog></dialog>
<script>
document.querySelector('dialog').showModal();
</script>