Align submit button along with input Bootstrap

5

I have the following code that uses bootstrap 3 that consists of an input and a submit button. Currently the button is below the input, but I want it to be aligned laterally with the input. I checked some issues here but the answers did not solve the problem.

Code:

<body>
    <nav class="navbar navbar-default" role="navigation">
        <div class="container">
            <!-- Brand and toggle get grouped for better mobile display -->
            <div class="navbar-header">
                <button class="navbar-toggle" type="button" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1"> 
                    <span class="sr-only">Toggle navigation</span> 
                    <span class="icon-bar"></span>
                    <span class="icon-bar"></span>
                    <span class="icon-bar"></span>
                </button> 
                <a class="navbar-brand" href="#">Meu Site</a>
            </div>
            <!-- Collect the nav links, forms, and other content for toggling -->
            <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
                <ul class="nav navbar-nav navbar-right">
                    <li><a href="#">News</a></li>
                    <li><a href="#">Login</a></li>
                    <li><a href="#">Create Account</a></li>
                </ul>
            </div><!-- /.navbar-collapse -->
        </div><!-- /.container -->
    </nav>

    <div class="container">
        <div class="row">
            <form class="span7 text-center col-md-4 col-md-offset-3" style="float: none; margin-left: auto;margin-right: auto;" role="search">
                    <div class="form-group">
                        <label class="radio-inline"><input type="radio" name="optradio">Opt1</label>
                        <label class="radio-inline"><input type="radio" name="optradio" checked="">Opt2</label>
                        <label class="radio-inline"><input type="radio" name="optradio">Opt3</label>
                        <input class="form-control" type="text" placeholder="Search" />
                    </div>
                    <button class="btn btn-default" type="submit">Search</button>
            </form>
        </div>
    </div>
</body>

The site like this

ThesiteasIwant(searchbuttonright-alignedandradiobuttonscentralizedbetweentheinputandthebutton)

    
asked by anonymous 24.12.2014 / 13:44

1 answer

6

Create a div with class input-group and add input and the button inside, use the class input-group-btn in the div where the button is going to be.

<div class="input-group">
    <input class="form-control" type="text" placeholder="Search" />
    <div class="input-group-btn">
        <button class="btn btn-default" type="submit">Search</button>
    </div>
</div>

Example: link

    
24.12.2014 / 14:03