diff --git a/index.css b/index.css index e816081..1c8488a 100644 --- a/index.css +++ b/index.css @@ -1,17 +1,28 @@ + .red { + order: 1; + background-color: red; width: 150px; height: 150px; - background-color: red; } .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 diff --git a/index.html b/index.html index 2b2396f..a3afd14 100644 --- a/index.html +++ b/index.html @@ -3,7 +3,7 @@