CSS - Distribute columns evenly with justify-content

0 votes
11 views
added Nov 4 in CSS by lcjr First Warrant Officer (11,780 points)
.app_tabs {
    .tabs {
      display: flex;
      justify-content: space-between; 
      border-bottom: 1px solid #ddd;
    }
  
    .tab {
      padding: 5px;
      cursor: pointer;
      transition: color 0.3s ease;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;

 

lazacode.org - Malaysia's programming knowledge sharing platform, where everyone can share their finding as reference to others.
...