Hallo,
ich bin gerade dabei meine Website responsive zu machen, jedoch bekomme ich einen Text nicht zentriert und vertikalen text nicht an beide Ränder. Alle sind oben links in der Ecke.
Da ich aber erst am Anfang vom Programmieren generell bin habe ich auch keine Ahnung, was sonst noch machen könnte.
HTML: Index.html
<div class="Home">
<a href="Index.html"><h1><center>HOME</center></h1></a></div>
<div class="About">
<a href="About.html"><h1><center>ABOUT</center></h1></a></div>
<div class="Contact">
<a href="Contact.html"><h1><center>CONTACT</center></h1></a></div>
CSS: Stylesheet
.Home {
display: flex;
align-self: center;
align-content: center;
z-index: 3;
justify-content: center;
align-items: center;
position: fixed;
}
.About{
display: flex;
transform: rotate(90deg);
z-index: 3;
float: left;
position: fixed;
}
.Contact{
display: flex;
transform:rotate(-90deg);
z-index: 3;
float: right;
position: fixed;
}
Alles anzeigen
Wie es oben links in der Ecke aussieht:
[Blockierte Grafik: https://prnt.sc/we0725]
Danke schonmal an alle die helfen.