I'm new and although I've been reading reviews of other threads, I do not exactly give what I'm looking for. I need to place two buttons in the middle of a div that occupies the whole screen, I'm doing it with bootstrap and I do not have much idea. it would be something like this,
My HTML code:
<div class="trans">
<button class="btn btn-info btn-responsive btninter">Contacta</button>
<button class="btn btn-info btn-responsive btninter right">Proyectos</button>
</div> -----El div trans es simplemente para ubicarme----
My style:
.centerbtn{
position:absolute;
width:100%; left:0;
text-align:center;
margin:auto;
/*position: relative; top: 50%; transform: translateY(-50%) translateX(30%); width: 100%;*/
}
How can I do it?