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; }