The repeat() function in CSS Grid simplifies layouts by allowing you to define repeating track patterns with a specified number of rows or columns.
Initial CSS for this problem is already written for you. Your task in this problem is to apply css on the .container element (of 500px) as per the instruction table below. This will result in the layout as shown in the screenshot.
| CSS Selector | CSS Styling |
|---|---|
| div.container | display:grid; |
| grid-template-columns : repeat(2,200px); |
Best of luck, developers!