I'm trying to replicate the iOS 7 blur effect with CSS 3 to make a blurred menu bar with buttons above it. However, when I blur just the menubar, also the buttons and text in it gets blurred, which isn't what I want.
How the code looks:
<body id="containerid">
<div class="navbar navbar-static-top">
<div class="navbar-inner">
<div class="container">
<ul class="nav">
<li>Button 1</li>
<li>Button 2</li>
</ul>
</div>
</div>
</div>
</body>
Basically I just want to blur <div class="navbar navbar-static-top">
but not the buttons inside that div. How would one do that?