My take on functional CSS
I would like to piggyback on a great article posted on CSS Tricks titled The Growing Popularity of Atomic CSS. Atomic or Functional CSS is a new trend in CSS development in which one tends to create many CSS classes that contain single style assignment and use these classes as building blocks on DOM elements. Consider this frequently seen functional example : .relative { position: relative; } .flex { display: flex } .pb10 { padding-bottom:...