兩份資料,需置中整齊排列,深色底白字,要有下底線,要隨視窗大小伸縮進行調整,用flex簡單排版:
<div class="end2">
<div class="name">
Free game <br> Gerbee / Austria / Sweetcamer <br>
+886 012 345 678 <br>ggst@ramisgod.de
</div>
<div class="name2">Service <br>
About me <br>
FAQ <br>
Sustainability <br>
Team <br>
Jobs <br>
Terms and conditions / Privacy <br>
Imprint / Contact</div>
</div>
.end2 {
height: 400px;
width: 100%;
background-color: rgb(65, 49, 49);
display: flex;
flex-wrap: wrap;
justify-content: center;
flex-direction: row;
align-content: flex-start;
}
.name {
height: 200px;
width: 25%;
color: rgb(255, 255, 255);
border-bottom: 1px solid rgb(255, 255, 255);
}
.name2 {
height: 200px;
width: 25%;
color: rgb(255, 251, 251);
border-bottom: 1px solid rgb(255, 255, 255);
}