CSS
Last updated
Last updated
Table of Contents
When the world wide web was born, it was just a means of communicating information. The world of design hadn't yet made its way to the internet and websites looked like this:
With just the addition of CSS, that same paged can be dramatically transformed:
You can see this page at https://csszengarden.com/, a website dedicated to showing the power of CSS. It showcases a variety of designs of the the exact same HTML. The only thing that changes is the CSS!
CSS stands for Cascading Style Sheets
CSS rules tell our browser how to display our HTML
You can select elements on the page by tags, ids, classes, and more, and then apply styles to them.
CSS let's us say "I want all paragraph elements with the class "vivid" to have purple bold text in Helvetica font.
The browser already has some default styles but we can override those styles with our own.
We can change the color, the size, the font, the position, and more of any element on the page.
CSS rules are most commonly written in .css
files
In order for CSS rules to be applied to an HTML page, the .html
file must use a <link rel="" href="" />
tag that references the .css
file:
The rel
(relevance) attribute tells the browser what kind of file is being linked (other file types can also be loaded using this tag)
The href
(hyperlink reference) attribute is an absolute/relative path to the .css
file
💡 Tip! Test that the link worked by adding a few super obvious rules in the CSS file to make sure it's actually changing the HTML appearance. For example, make the
body
have a purple background!
A CSS rule is made up of a selector and a declarations
the selector is what chooses the element(s) that will be styled
the declarations are the actual styles that will be applied
Declarations are made up of property/value pairs (like an object) and MUST end with a semicolon (unlike an object)
There are TONS of ways to select elements with CSS rules (list of all the selectors). The most common selectors are:
By tag (select all p
elements)
By class name (select all elements with class="blue"
)
By id name (select the element with id="email-form"
)
Or some combination of these things
You can also select children tags of a particular parent tag
Pseudo-classes let us select an element in a particular state such as when it is being hovered over or has been clicked:
When one HTML element is styled by two conflicting CSS rules, selector specificity determines how conflicting style rules are resolved
By default, CSS is applied top-to-bottom and the rule that comes last is applied (think of it like coats of paint being applied on top of each other):
The more selectors you add, the more specific the rule is. Selectors with greater specificity will override rules defined by selectors with lesser specificity.
There are four categories which define the specificity level of a selector:
Inline styles - Example: <h1 style="color: pink;">
IDs - Example: #navbar
Classes, pseudo-classes, attribute selectors - Example: .test
, :hover
, [href]
Elements and pseudo-elements - Example: h1
, ::marker
The p
with the id="subtitle"
attribute will be red, because it's more specific than the selector p
.
px
vs %
vs rems
The px
unit sets the exact size of an element. Setting the size of an element using px
values should be avoided if possible as they don't comply with accessibility standards.
The rem
unit sets a size of an element relative to the browser's base font size which is typically 16px
by default. User's can change their base font size as an accessibility feature. If your website uses rem
units instead of px
, your font will scale according to your user's accessibility settings.
The percentage %
unit will set the size of an element to a percentage of its parent element's width. So, if you have a parent element with a width of 100px
, and the child has its width set to 75%
, the child will have a width of 75px
. Use this carefully!
Q: The tags h1
, h2
, and p
all have different default styles. How are they different?
Q: What is wrong with the CSS syntax below?
Q: How would you make all p
tags blue? How would you make only the p
tags with class="fun"
green? How would you make the second p
tag orange
?
Q: What will be the color of paragraph?
Q: what is the width of the img
element based on the CSS below?
Q: By default, the width
property affects the size of the "content" box and padding and margin are added to the outside of this content box. What kinds of challenges does this present?
Q: What will the total width of the img
element be after applying the CSS rules below? What will the width of the content box be?
Q: A user sets their font size to "extra-large" which changes the base font size to 32px
. What will the size of an element with font-size: 2rem;
be in pixels?