From d031261ad517254b8b267cc65e0edb32d025f386 Mon Sep 17 00:00:00 2001 From: Johnson <66844751+Johnson-Berisha@users.noreply.github.com> Date: Sun, 15 Nov 2020 20:19:17 +0100 Subject: [PATCH] Got Rid Of Some Stuff I accepted Jon to do this. --- 3-terrarium/2-intro-to-css/README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/3-terrarium/2-intro-to-css/README.md b/3-terrarium/2-intro-to-css/README.md index f4d46eca..afabc117 100644 --- a/3-terrarium/2-intro-to-css/README.md +++ b/3-terrarium/2-intro-to-css/README.md @@ -36,7 +36,6 @@ Cascading Style Sheets incorporate the idea that the styles 'cascade' such that ### Task -Explaning: Inline Styling means that you're styling a element in the HTML(HyperText Markup Language) file,
This is not a really popular way you should do it.
Add the inline style "color: red" to your `

` tag: @@ -62,7 +61,7 @@ Styles are inherited from an ancestor style to a descendent, such that nested el ### Task -Set the body's font to a given font using the `font-family` elment, and check to see a nested element's font: +Set the body's font to a given font using the `font-family` element, and check to see a nested element's font: ```CSS body { @@ -131,7 +130,7 @@ Here, you have placed these containers with absolute positioning to the far left
``` -### Classes (these are used a lot) +### Classes In the example above, you styled two unique elements on the screen. If you want styles to apply to many elements on the screen, you can use CSS classes. Do this to layout the plants in the left and right containers.