Click here to Skip to main content
15,886,362 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I've programmed a website with HTML, PHP and Bootstraps.

Though to Bootstrap everything looks very professional and beautiful.

The only thing that is giving me a hard time is to show suggestions with a datalist. I have to use Internet Explorer version 11 and in IE it looks pretty old-fashioned.

Example code:

XML
<input type="text"  class="form-control" name="Mitarbeiter2" list="Mitarbeiter">

<div class="form-group">
  <datalist id="Mitarbeiter" >
    <option value="Max Mustermann"/>
  </datalist>
</div>


Everything works perfectly fine! I just need to find a way to modernize the look a little bit.

Is there a way to do this with CSS?

Maybe even a Bootstrap class?

Any ideas?
Posted
Updated 5-Oct-15 22:44pm
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900