I am making a form that has a checkbox that is embedded in text input. Here is what I did to make it look good with bootstrap:
<label class="checkbox">
<input type="checkbox" name="keywords" value="__option__">
<input type="text" name="keywords_other_option" value="" placeholder="Other">
</label>
It looks good, but it does not work well. In firefox, the user cannot enter a text field. Is there a good way to bootstrap to check the box and text embedded in each other?
source
share