1
Friends, I need a panel whose title has a close button inside it, to the right and responsive. The code below was the closest I could reach using buttons. Thank you very much for your help.
<div class="container">
<div class="row-fluid">
<div class="col-md-4 col-md-offset-4">
<div class="panel panel-default">
<div class="btn-group">
<label class="btn btn-lg btn-success">como deixar com o X a direita</label>
<label class="btn btn-lg btn-danger">
<span class="glyphicon glyphicon-remove"></span>
</label>
</div>
<div class="panel-body">
<form role="form">
<fieldset>
<div class="form-group">
<input class="form-control" placeholder="E-mail" name="email" type="email" autofocus>
</div>
<div class="form-group">
<input class="form-control" placeholder="Password" name="password" type="password" value="">
</div>
<div class="checkbox">
<label>
<input name="remember" type="checkbox" value="Remember Me">Remember Me
</label>
</div>
</fieldset>
</form>
</div>
<a href="index.html" class="btn btn-lg btn-success btn-block">texto</a>
</div>
</div>
</div>
</div>
Thank you very much for your help, partner. I used buttons to show what effect I need, that the close button is the same height as the title, which is totally on the right is similar to this example. https://drive.google.com/file/d/0B5c-Iyxup6Z5ZkktTGV1b1djRnM/view?usp=sharing Any ideas on how to make it look the same? Thanks a lot
– alexneto