I am currently working on the footer design of a website and my goal is to center the contents within it. You can view the fiddle for reference. As of now, the contents in the fiddle are not perfectly centered.
Here are the CSS styles I have applied to position the contents at the footer:
.footer_fixed
{
background-color: #343a40;
color: #C0C0C0;
}
.contact_us
{
text-align: right;
}
.social_media_icons
{
text-align: left;
}
Current Issue:
I am seeking advice on what modifications need to be made in the code within the fiddle to ensure the contents are centered in the footer. I attempted using
(display:flex, align-items:center)
but did not achieve the desired result.
.footer_fixed
{
background-color: #343a40;
color: #C0C0C0;
display: flex;
align-items: center;
background-repeat: no-repeat;
background-size: cover;
justify-content: center;
}