I want to have the logo at the bottom right corner fixed at that position no matter the screen size whether the screen size is below 768px or above using CSS.
Below is an excerpt of the HTML and CSS code I wrote.
<!DOCTYPE HTML>
<html lang="en">
<head>
<title>Document</title>
<link rel="stylesheet" href="index.css" />
</head>
<body>
<header>
<!-- Logo and Menu here-->
</header>
<main>
<h1 class="brand-name">Brand Name Here</h1>
<h4 class="brand-slogan">Brand Slogan here</h4>
<p class="message">The message goes here</p>
<section class="social-icons">
<img src="" alt="" />
<img src="" alt="" />
<img src="" alt="" />
<img src="" alt="" />
<img src="" alt="" />
<img class="logo" src="" alt="" />
</section>
</main>
Excerpt of CSS Code Starts Here
.brand-name { property: value; }
.brand-slogan {
property: value;
}
.message {
property: value;
}
*The Issue is how to place these two (social icons and the logo) side by side and push the logo to the extreme right using css's flexbox*
**.social-icons {
property: value;
}
.logo {
property: value;
}**
Exactly how I want it done has been shown in the image below
