backdrop-inherit-rendered-ref.html (288B)
1 <!DOCTYPE html> 2 <title>CSS Test Reference</title> 3 <style> 4 dialog { 5 inset: 100px; 6 } 7 dialog::backdrop { 8 background-color: green; 9 inset: 100px; 10 } 11 </style> 12 <dialog>Green backdrop with 100px inset</dialog> 13 <script> 14 document.querySelector("dialog").showModal(); 15 </script>