css - Styling to recreate the amazon filter? -


i want similar search filter application. have dropdown list input box plus go button? can recreate css it?

enter image description here

this pretty simple bootstrap. learn it!

jsfiddle: demo

<div class="input-group">     <div class="input-group-btn">         <button type="button" class="btn btn-inverse dropdown-toggle" data-toggle="dropdown">action <span class="caret"></span></button>             <ul class="dropdown-menu">                 <li><a href="#">action</a></li>                 <li><a href="#">another action</a></li>                 <li><a href="#">something else here</a></li>                 <li class="divider"></li>                 <li><a href="#">separated link</a></li>             </ul>         </div>         <input type="text" class="form-control"/>         <span class="input-group-btn">             <button class="btn btn-inverse" type="button">go!</button>         </span>     </div> </div> 

Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -