My approach was putting my divs into one section. Then within that element placing the two divs that needed to be placed out to the right in their own div that I could float out. By making all the boxes an in-line element I could allow everything to fall onto one line. Challenge number 1
My approach was putting my divs into their own section. With div1 it would automatically sit to the right so I had to focus on div2 and div3. For div3 I did a float right and it shot to where I needed it to. Div2 I thought a text-align center would work on the section, but that just centered the word div2. I then reiterated the width of the div and did a margin: 0 auto to center it. Challenge number 2