Understanding The CSS Calc() Function

The CSS calc() function is a vital part of many responsive websites these days. It allows developers to have the benefits of both absolute units and percentages in CSS positioning. Things that can seem daunting, such as aligning elements […]

Read Article

Pros and Cons: One Style Sheet or Many

In CSS, there are generally two schools of thought about apply cascading style sheets to your front-end code. You either section your style sheets off so that your CSS folder looks something like this:

header.css
footer.css
sidebar.css
main.css
social.css

You get the idea. By […]

Read Article