Parent element backdrop-filter does not apply for its child
问题 Please refer to the following snippet. I'm wondering how to make the backdrop-filter apply to the drop down menu ul ? nav { position: fixed; top: 0; left: 0; right: 0; height: 50px; background: hsla(0, 0%, 100%, 80%); border-bottom: 1px solid hsla(0, 0%, 0%, 10%); -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); z-index: 1; } nav ul { display: flex; align-items: center; margin: 0; padding: 0; list-style: none; } nav li { position: relative; margin: 0 20px; height: 50px; line