Presently utilizing bootstrap-2.1.1
In my row-fluid
, I have 2 columns with input-prepends inside. Below is a snippet of code:
<div class="row-fluid">
<div class="span6">
<ul>
<li>
<div class="input-prepend box-shadow">
<span class="add-on">email</span>
<input type="text" name="email" value="" placeholder="Edit email"/>
</div>
</li>
</ul>
</div>
<div class="span6">
<ul>
<li>
<div class="input-prepend box-shadow">
<span class="add-on">name</span>
<input type="text" name="name" value="" placeholder="Edit name"/>
</div>
</li>
</ul>
</div>
</div>
VIEW THE JSBIN HERE: http://jsbin.com/unuruh/1/
ISSUE
How can I make the input fields within the parent input-prepend
full width and responsive to the browser size using CSS only? The width of the add-on
should remain the same...
Appreciate your assistance in advance.