I want the two divs
(green and red) aligned side-by-side as they are, but green should be fixed right-aligned while red aligned left, so I set margin-left:0vw;
to green, and did not solve, what procedure would you do to leave the red on the left, and the green on the right?
div.container {
height: 100%;
background: -webkit-linear-gradient(top, #088fad 20%, #00d5ff 100%);
}
div.titulo {
font-size: 5vw;
background-color: blue;
text-align: center;
padding: 3vw;
position: relative;
}
div.op1 {
width: 38%;
display: inline-block;
background-color: red;
font-size: 3vw;
text-align: center;
padding: 5vw 0vw 5vw 0vw;
min-width:40vw;
}
div.op2 {
width: 38%;
background-color: green;
display: inline-block;
margin-right: 0vw;
font-size: 3vw;
text-align: center;
padding: 5vw 0vw 5vw 0vw;
min-width:40vw;
}
<div class="container">
<div class="col-md-12"></div>
<div class="titulo">O que você está procurando?</div>
<div class="op1">Opção 1</div>
<div class="op2">Oção 2</div>
</div>