A Quick Guide to CSS

Ariel Jakubowski
6 min readJul 11, 2019

Cascading Style Sheets (CSS) is what controls the aesthetics of a webpage. It determines the colors, sizes, and fonts of elements on a webpage. CSS is applied to HTML elements.

Writing CSS

When writing CSS, there are two parts to a CSS declaration; a property and a value. The property is what aspect of an HTML element you are changing. The value is what you want the property to be. For…

--

--