From 5ed982cc7f67047eb0c193affc44bccaf474afc2 Mon Sep 17 00:00:00 2001 From: PompaDonpa Date: Sun, 7 Mar 2021 21:47:00 -0500 Subject: [PATCH] Lab completed --- index.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/index.css b/index.css index e816081..c035be9 100644 --- a/index.css +++ b/index.css @@ -2,16 +2,26 @@ 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; +} + +body{ + display:flex; + justify-content: space-between; + flex-flow: row wrap; + gap: 20px; }