Blog

Author Archive


Flexbox Intro
Posted on September 3, 2020 in CSS by Matt Jennings

Features flex-containers (row or parent) and flex-items (cells or children). Both are required to work.
Excels at vertical centering and equal …

Read more


border-box CSS Value
Posted on September 3, 2020 in CSS by Matt Jennings

The boxing-size: border-box; CSS rule takes into account the padding and border when calculating the width or height of an …

Read more


CSS Attribute Selector
Posted on September 3, 2020 in CSS by Matt Jennings

The [class*=”col-“] code below is an attribute selector. This code says for any HTML element with the attribute of class, …

Read more


Responsive Design using CSS
Posted on September 3, 2020 in CSS by Matt Jennings

Responsive design is defined by three characteristics:

Grid-based layout
Media queries
Images that resize


GitHub Continuous Integration
Posted on September 2, 2020 in Git, GitHub by Matt Jennings

Merging smaller commits frequently, instead of waiting until a project is “done” and doing one big merge.
This means that features …

Read more