CSS
CSS = Cascading Style Sheet
Vocabulary & Syntax

- CSS-Selector — are used to "find" (or select) HTML elements based on their element name
tag, id#, class., attribute, and more. - styling-rules — are inside the curly brackets
{} - style property — for example
width,colororfont-size - property-value — for example
100px,redor14px. Value is surrounded by quotations marks"".
Multiple CSS-Selectors
/* seperated by comma
* can be classes, id's or tags, doesnt really matter */
h1, h2, p,
.banners, .container,
#top-logo, #footer-logo {
property: value;
property: value;
property: value;
}