From 7c074b50c1e9a342b49db9696936642a369a845b Mon Sep 17 00:00:00 2001 From: Kelvin Zheng Date: Sat, 6 Mar 2021 20:11:50 -0500 Subject: [PATCH] completed lab --- index.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/index.css b/index.css index e816081..1218df6 100644 --- a/index.css +++ b/index.css @@ -2,16 +2,28 @@ 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; + flex-wrap: wrap; + justify-content: space-evenly; + + + +} \ No newline at end of file