diff --git a/Markdown/TheOdinProjectNotes.md b/Markdown/TheOdinProjectNotes.md
index 8826520..f5e3d5d 100644
--- a/Markdown/TheOdinProjectNotes.md
+++ b/Markdown/TheOdinProjectNotes.md
@@ -302,6 +302,9 @@ git remote set-url origin https://'username':'password'@repositorylink
- Used to describe the image, helps with accessability and when the image itself can't be loaded
- Ex: `
`
- This loads the logo, if it can't then `The Odin Project Logo` is displayed
+#### Div
+- A `
Hi...
+` would be left alone +#### Class Selectors +- These will select all elements within a given class +- A class is initialized within a `
` with the `subsection` class +```HTML +
This is where a preview for a post might go.
+This is where a preview for a post might go.
+` because it would create `` element's `height` and `width` values will be the same as the source image
+ - In order to keep the same aspect ratio a value of `auto` is used for the `height`, with a numeric `width` value to match
+```CSS
+img {
+ height: auto;
+ width: 500px;
+}
+```
+- In this example if we had an image of **500px height** and **1000px width**, it would be readjusted to a height of **250px**
+- Both elements should be included even if you are not changing them from the default values.
+ - If not included ***the image will take longer to load than the rest of the page*** contents and it will cause a sudden drastic shift in the page when it readjusts to the image
+ - By stating `height` and `width`, we can have the page reserve the area for the image with the rest of the page
+#### The Cascade of CSS
+- The cascade labels are what dictate how our page looks
+- Browsers have default views for buttons and links, etc. and can vary from each browser
+#### Specificity
+- A CSS declaration that is more specific will take priority over less specific ones.
+- Inline styles, have the highest specificity and therefore priority compared to selectors
+ - each selector has their own specificity hierarchy as well
+ - ID Selectors (most specific selector)
+ - Class Selectors
+ - Type Selectors(least specific)
+- Specificity will only be taken into account when an element has multiple, conflicting declarations targeting it, like a tie-breaker
+- When no declaration has a selector with a higher specificity, a larger amount of single selector will beat a smaller amount of that same selector
+```HTML
+
+
+