0
I am using bootstrap, HTML and CSS in a responsive layout and wanted to add two Buttons in the upper right corner of the DIV
How can I do that? Regardless of what’s inside the div? for example
<div>
<img>
</div>
or
<div>
<p>
</div>
div {
background: gray;
}
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" />
<div class="col-md-12">
<div class="col-md-3 FaseImg">
<img id="thumbnail" src="https://thumbs.dreamstime.com/b/do-retrato-masculino-do-avatar-do-%C3%ADcone-do-perfil-pessoa-ocasional-46846328.jpg" class="img-circle img-responsive center-block" alt="Imagem" width="150" />
</div>
</div>
Search for the Bootrap Navbar and use the "pull-right"
– hugocsl