In CSS Grid, grid-template-columns: auto fixed-value; defines a layout where one column adapts to content size, while the other maintains a fixed width.
Initial CSS for this problem is already written for you. Your task in this problem is to apply css as per the instruction table below. This will result in the layout as shown in the screenshot.
| S. no | Problem |
|---|---|
| 1 | apply width of 600px to div.container |
| 2 | make .container element a grid container |
| 3 | .container element should have its first column to be flexible while its second column to be 200px |
| CSS Selector | CSS Styling |
|---|---|
| div.container | width : 600px |
| display grid | |
| grid-template-columns : auto 200px |
Best of luck, developers!