From dedbc9e79f176dcb4ad2a481ce27609c56a8c641 Mon Sep 17 00:00:00 2001 From: Umair93r Date: Sat, 11 Jul 2026 12:25:03 +0530 Subject: [PATCH] Revise layout instructions for flex layout Updated the README to clarify layout requirements. --- assignment-1/problems/2-flex-layout/README.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/assignment-1/problems/2-flex-layout/README.md b/assignment-1/problems/2-flex-layout/README.md index 5f5339e..6fcb1dc 100644 --- a/assignment-1/problems/2-flex-layout/README.md +++ b/assignment-1/problems/2-flex-layout/README.md @@ -1,7 +1,8 @@ +Create a layout with two side-by-side
s. -Create a simple layout where you see div with red color on the left and blue color on the right. -The right grid should be twice as wide as the left one. - -Contents of both the grids should be vertically centered - -Also make sure its max 1200px and center of the screen \ No newline at end of file +The left
is red. +The right
is blue. +The blue
should be twice as wide as the red one. +Center the content vertically inside both
s. +Keep the entire layout centered on the page. +The layout should have a maximum width of 1200px.