If there is one thing I’ve learned about CSS, it’s that CSS loves shortcuts (aka “shorthand” properties)! The grid property is CSS Grid combines the following properties. Like most shorthand properties in CSS, depending on how many variables you add to the property will determine how it behaves. Implicit vs…
CSS ‘>’, ‘+’, ‘~’ Selectors Explained Simply
Knowing CSS selectors is easily one of the most important aspects of web development. As a former backend developer, it makes me cringe how bad I was at CSS selectors. Not knowing selectors is known to cause mangled front ends and ugly Bootstrap UI’s! Element Type Selectors The most basic…
CSS Transitions Explained Simply
In a nutshell, transitions provide a way to control animation speed when changing CSS properties. You may have noticed that some elements seem to almost have a mind of their own! By using transitions we can choose between initial and target states. But most of all, transitions all properties to…