5
I have the following code that uses bootstrap 3 consisting 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 have seen some questions 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
The site as I want (search button aligned to the right and radio Buttons centralized between the input and the button)
Have you tried putting the button inside the
div
form?– mutlei
Yes, the button is "Pasted below the input"
– Ricardo
Is that good? http://jsfiddle.net/a6Lt5Lgx/show/
– Laerte
Yeah, like you did to get like this?
– Ricardo
I posted as an answer.
– Laerte