From eb8ea744ec81c420a99ddceef7e6e12da232f7f6 Mon Sep 17 00:00:00 2001 From: Cristobal Arias Date: Sun, 7 Mar 2021 23:47:30 -0500 Subject: [PATCH] complete lab --- index.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/index.css b/index.css index e816081..b97f638 100644 --- a/index.css +++ b/index.css @@ -1,17 +1,27 @@ +body{ + display: flex; + flex-wrap: wrap; + justify-content: space-evenly; + +} + .red { width: 150px; height: 150px; background-color: red; + order: 0; } .blue { width: 150px; height: 150px; background-color: blue; + order: 2; } .yellow { width: 150px; height: 150px; background-color: yellow; + order: 1; }