Current directory: /home/klas4s23/domains/585455.klas4s23.mid-ica.nl/public_html/Gastenboek/uploads
.containerheader {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
grid-template-rows: 1fr;
gap: 0px 0px;
grid-auto-flow: row;
grid-template-areas:
"title title . . links links links";
}
.links {
grid-area: links;
display: flex;
justify-content: space-evenly;
align-items: center;
}
.title {
grid-area: title;
display: flex;
justify-content: center;
align-items: center;
}
html,
body,
.containerheader {
height: 100%;
margin: 0;
}
.containerheader {
border: 2px solid purple;
height: 100px;
}
.current {
color: red;
}
a{
all: unset;
cursor: pointer;
}
a:hover{
color: blueviolet;
}
.link{
font-weight: bold;
font-size: 32px;
}