-2
Hi, if you’re referring to the structural part of the box, you should insert Divs into html by placing your proper ID or Class identifiers ae into the CSS you style and shape the size.
+- just like 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>
You can inspect element in the browser and see which active styles of this box.
– Jefferson Quesado
@Jeffersonquesado had never thought of it, I’ll try
– Melissa Sousa