From 6c5e733db6f6b07f9eea404c69fc80cd81505324 Mon Sep 17 00:00:00 2001 From: Geormary Sanchez Date: Sat, 13 Mar 2021 19:07:15 -0500 Subject: [PATCH] complete lab --- index.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/index.css b/index.css index e816081..b29773f 100644 --- a/index.css +++ b/index.css @@ -1,17 +1,29 @@ +body{ + display: flex; + flex-direction: row; + flex-wrap: wrap; + +} .red { width: 150px; height: 150px; background-color: red; + display: flex; + order: -1 } .blue { width: 150px; height: 150px; background-color: blue; + display: flex; + order: 1 } .yellow { width: 150px; height: 150px; background-color: yellow; + display: flex; + }