RobMack8932 / assignments

Assignments for Suncoast Developers Guild
0 stars 0 forks source link

05 - 03 - Flexbox flexing #18

Closed RobMack8932 closed 4 years ago

RobMack8932 commented 4 years ago

Now that we have learned the power of flexbox we will apply it to the sites we are building. We'll also go back to a past assignment and see how flexbox would simplify our HTML and CSS.

Objectives

Requirements

Explorer Mode

Adventure Mode

Additional Resources

Recommended Practice:

RobMack8932 commented 4 years ago

https://kitteh-robma.netlify.com So close but so far

gstark commented 4 years ago

Yes, you don't have a single parent element that wraps the paragraphs as one element and the cat as the other.

You want a structure like this:

PARENT
   CHILD-FOR-PARAGRAPHS
     <p>
     <p>
   CHILD-FOR-CAT
      <img>
      <p>
      <ul>

Then you can make PARENT as display: flex and CHILD-FOR-PARAGRAPHS and CHILD-FOR-CAT will be flex-ed in a row side-by-side.

RobMack8932 commented 4 years ago

Your homework 05 - 03 - Flexbox flexing was marked: Needs Improvement

Almost there, keep it up!

“Almost there, keep it up!”

RobMack8932 commented 4 years ago

https://kitteh-robma.netlify.app

RobMack8932 commented 4 years ago

Your homework 05 - 03 - Flexbox flexing was marked: Meets Expectations

Well done!

“Well done!”

gstark commented 4 years ago

Thanks for finishing this!