From b3277ed9570de385feff4909475dc16b85c028a0 Mon Sep 17 00:00:00 2001 From: JDJ97 Date: Wed, 3 Mar 2021 20:16:02 -0500 Subject: [PATCH] Finished Assignment --- index.css | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/index.css b/index.css index e816081..58cc959 100644 --- a/index.css +++ b/index.css @@ -1,17 +1,27 @@ +body { + display: flex; + flex-flow: row wrap; + justify-content: space-evenly; +} + + .red { width: 150px; height: 150px; background-color: red; + order: -2; } .blue { width: 150px; height: 150px; background-color: blue; + order: -1; } .yellow { width: 150px; height: 150px; background-color: yellow; -} + order: 0; +} \ No newline at end of file