From d52f609f0d2c1be8d7b428248f3b626a6ab90b00 Mon Sep 17 00:00:00 2001 From: Jasleen Villamil Date: Sun, 4 Apr 2021 00:28:53 -0400 Subject: [PATCH] Done --- index.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/index.css b/index.css index e816081..1ad0fd5 100644 --- a/index.css +++ b/index.css @@ -2,16 +2,26 @@ width: 150px; height: 150px; background-color: red; + order: 1; } .blue { width: 150px; height: 150px; background-color: blue; + order: 3; } .yellow { width: 150px; height: 150px; background-color: yellow; + order: 2; } + +body { + display: flex; + flex-direction: row; + flex-wrap: wrap; + justify-content: space-evenly; +} \ No newline at end of file