У меня 3 коробки разных размеров.Я хочу выровнять их так:
Но все, что я получаю, это:
Я хочу создатьВеб-сайт темы windows metro, пожалуйста, помогите.
header {
background: url(./bg/bg1.png) 50% 50% no-repeat;
width: 100%;
height: 100%;
position: absolute;
background-size: cover;
}
.box {
display: inline-block;
margin: 5px;
text-align: center;
}
.box img{
max-width: 40%;
margin-top: 5px;
margin-left: 0px;
}
.menu {
margin: 5px;
}
.boxes1 .box {
display: inline-block;
}
<header>
<img src="./img/sweb-logo-new-wh1.png">
<div class="menu">
<div class="boxes1" style="width: 48%;">
<a href="#">
<div class="box" style="background: #3478e5; width: 50%; height: 300px; margin-bottom: -200px;">
<img src="./img/user.png">
<p style="margin-top: 100px; color: white;">Korsinička Zona</p>
</div>
</a>
<a href="#">
<div class="box" style="background: #34e560; width: 40%; height: 330px; margin-top: -500px;">
<img src="./img/information.png">
<p></p>
</div>
</a>
<a href="#">
<div class="box" style="background: #34e560; width: 30%; height: 200px; margin-top: -900px;">
<img src="./img/information.png">
<p></p>
</div>
</a>
</div>
</div>
</header>