I tried to make my footer to look like a column of links next to one another but I cant seem to get them to each other. Instead one keeps centering and the other goes the far left. I do not know what to do please help.
a{
color: red;
font-size: 30px;
}
.Information h1{
margin-top: 25px;
margin-right: 25px;
color: red;
font-family: Georgia, 'Times New Roman', Times, serif;
font-size: 30px;
}
.Information h2{
font-size: 30px;
position: absolute;
top: 10px;
}
footer{
background-color: white;
}
2
Answers
Because of anchor tag margin issue.
update the code
Since HTML is missing in your example i can only asume, what exactly you want. "A column of links" sounds more like a list to me, i.e. one item below the other. On the other hand you mentioned "next to one another". You will find both variants in my snippet (there are several ways to solve this, i chose the flexbox model). Hope this helps.