In my site , I am currently using overflow: hidden in #header to prevent overflowing the background belonging to one of his children ( #input , with SVG error cracked by #backgroundfix ).
However, I found that I should leave the overflow value to its default value, as it interferes with something else on my site.
How to disable or prevent #input background #input without using the overflow property? We hope that this will be supported widely.
HTML:
<header id="header" role="banner"> <section id="logo"></section><section id="input"> <form method="get"> <input id="searchInput" type="text" name="search" autocomplete="off" autofocus x-webkit-speech value="Leonirdo" onfocus="this.value = this.value;" /> </form> </section> <div id="backgroundFix"></div> </header>
source share