I have an environment which supports CSS / bootstrap 3.2, - but NO javascript. I am trying to implement a list filtering solution using pure CSS selector + HTML.
Suppose, I have 2 items in an HTML list element. I want to show only the ones matching the text entered in the input element.
<form>
  <ul>
    <li class ="c1">c1</li>
    <li class="c2">c2</li>
  </ul>
  <input type="text">
</form>
if I type c1 in textbox, that should show only the first item.Is this even possible using pure css, no JS?
 
     
    