Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hi I want to build form using Twitter Bootstrap with dropdown menu inside of text input. Like this ->enter image description here

I've managed only do it in this way

      <div class="input-append">
    <form method="get" action="/option" class="navbar-search" id="searchForm">
      <input type="text" size="16" placeholder="Search string" name="query">
      <button data-toggle="dropdown" class="btn btn-primary dropdown-toggle searchMain" style="width: 150 px;"><span>Option 1</span> <b class="caret"></b></button>
      <ul class="dropdown-menu" id="search-dropdown" style="left: 220px;">
        <li><a href="#" id="option-1">Option 1</a></li>
        <li><a href="#" id="option-2">Option 2</a></li>
        <li><a href="#" id="option-3">Option 3</a></li>
      </ul>
      <button type="submit" class="btn btn-primary"><i class="icon-white icon-search"></i></button>
    </form>
  </div>

But in this case droptdown is outside of text input. Is it possible to put dropdown inside of text input using Twitter Bootstrap?

share|improve this question
Broad question. Take a look at the 'position' attribute for CSS. – Artaex Media Jan 3 at 15:09
Can you rephrase your post to ask a specific question. As written, your post doesn't fit StackOverflow's question-and-answer format. – dgvid Jan 3 at 15:23

closed as not a real question by Rufinus, Explosion Pills, Stewbob, Linger, nzpcmad Jan 4 at 8:21

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Take a look at the Forms section of the bootstrap docs: http://twitter.github.com/bootstrap/base-css.html#forms

Your markup will look something like this:

<div class="input-append">
  <input class="span2" id="appendedDropdownButton" type="text">
  <div class="btn-group">
    <button class="btn dropdown-toggle" data-toggle="dropdown">
      Action
      <span class="caret"></span>
    </button>
    <ul class="dropdown-menu">
      ...
    </ul>
  </div>
</div>

The key here is the input-append class.

share|improve this answer
it's not exactly what i want. I want to put button inside of text input, not to to group. But thank you for answer. – gv0zd Jan 4 at 8:43

Not the answer you're looking for? Browse other questions tagged or ask your own question.