DONT ADD ANYTHING HERE!

Grab Coffee
Blue Square
Stop the Car
Blue Square
Take Nap
Blue Square
    <figure id="img2">
        <figcaption>Grab Coffee</figcaption>
        <img src="../images/myBlueSquare100_100.png" 
             alt="Blue Square">
    </figure>

    <figure id="img1">
        <figcaption>Stop the Car</figcaption>
        <img src="../images/myRedSquare2.png" 
             width="100" 
             alt="Blue Square">
    </figure>

    <figure id="img3">
        <figcaption>Take Nap</figcaption>
        <img src="../images/myOrangeSquare2.png" 
             width="100" 
             alt="Blue Square">
    </figure> 

Probelm

Rearrange the above figures in the order
  1. Stop the car (Red)
  2. Grab a coffee (Blue)
  3. Take a nap (Orange)

Solution One

Grab Coffee
Blue Square
Stop the Car
Blue Square
Take Nap
Blue Square
css
    #img1 {
      float: left;
    } 

Solution Two

Grab Coffee
Blue Square
Stop the Car
Blue Square
Take Nap
Blue Square
css
    .figure {
      float: left;
    }

    #img2,
    #img3 {
      float: none;
    } 

References

ecollege exam question