Good people,
I would like to know if you can help me create boxes like the picture, I can not.
Hi, if you are referring to the structural part of the box, you should insert Divs into html by placing your proper ID or Class IDs in the CSS you style and size.
+ - just as I did.
#omega{
font-size: 7vw;
font-size: 14vmin;
text-align: center;
position:relative;
display: inline-flex;
left:25%;
}
.beta{
width:200px;
height:300px;
background-color:#58b8ef;
border:2px solid black;
margin:3px;
}
input{
width:90px;
height:70px;
font-size:15px;
margin-top:80px;
}
<div id='omega' class='betax'>
<div id='omega1' class='beta'>1<br>
<input type="button" value="clique aqui">
</div>
<div id='omega2' class='beta'>2
</div>
<div id='omega3' class='beta'>3
</div>
</div>