Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

How to make a footer grid?

I need to create a footer for a website. It has 4 divs, but the first div has more margin on the right than the rest – 266px. How to properly arrange the columns in the footer so that there is good adaptability and indents according to the layout?

<footer class="footer">
  <div class="container footer-container">
    <div class="footer-content">
      <div class="footer-email">
        <p>support@gmail.com</p>
        <p>Unsubscribe</p>
      </div>
      <div class="legal-terms">
        <h5>Legal terms</h5>
        <p>Terms of Use</p>
        <p>Diclosures&Disclaimers</p>
      </div>
      <div class="privacy-info">
        <h5>Privacy info</h5>
        <p>Privacy Policy</p>
        <p>Cookie Policy</p>
      </div>
      <div>
        <h5>About</h5>
        <p>About Us</p>
      </div>
    </div>
  </div>
</footer>

enter image description here

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

>Solution :

use flexbox!

.footer {
  display: flex;
}


.footer-email{
width:34%;
}

.legal-terms,.privacy-info,.about{
width:22%; 

}
<footer class="footer">

 
    <div class="footer-email">
      <p>support@gmail.com</p>
      <p>Unsubscribe</p>
    </div>
    <div class="legal-terms">
      <h5>Legal terms</h5>
      <p>Terms of Use</p>
      <p>Diclosures&Disclaimers</p>
    </div>
    <div class="privacy-info">
      <h5>Privacy info</h5>
      <p>Privacy Policy</p>
      <p>Cookie Policy</p>
    </div>
    <div class='about'>
      <h5>About</h5>
      <p>About Us</p>
    </div>
  

</footer>
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading