2.3.9 Nested Views Codehs -

Create a main view (parent). Inside it, create two or three smaller views (children). Each child view should have its own background color and border. Add a text label inside one of the child views. The layout should resemble a dashboard or a settings screen.

.parent position: relative; width:200px; height:200px; .child position:absolute; top:10px; left:10px; 2.3.9 nested views codehs

"Create a program that displays a dashboard. You must have at least one parent view that contains at least two child views. Use proper coordinates and styling to show a clear hierarchy." Create a main view (parent)