Ich habe ja in meiner Welcome Section schon ein Item Welches schon Kinder in form von HTML -Tags hat.
Jetzt möchte ich gerre 3 weitere Boxen bzw. Items hinzufügen. um etwas Text unterzubringen. Dazu habe ich erstmal 3 div's genommen. Aber das ist wohl eher oldschool.
Ein item soll links eines Rechts und das dritte mittig unter beiden. Kann mir gerade nicht vorstellen wie das gehen soll wenn ich nicht den Bierdeckel zerschiessen will
HTML
<section id="welcome">
<img src="images/logo.png">
<h1>welcome</h1>
<div>1</div>
<div>2</div>
<div>3</div>
</section>
CSS
#welcome{
display: flex;
flex-direction: column;
align-items: center;
margin-top: 360px;
height: 50vh;
/* background-color: #b1d4e0; */
background-image: url(/images/beer2.jpg);
}
#welcome>img{
width: 15%;
margin: -125px;
}
#welcome>h1{
font-family: Verdana, Geneva, Tahoma, sans-serif;
color: blue;
margin-top: 120px;
}
@media only screen and (max-width: 767px) {
#welcome {
height: 50vh;
margin-top: 320px;
}
#welcome>h1{
margin-top: 80px;
}
#welcome>img{
width: 25%;
margin: -65px;
}
}
Alles anzeigen