#main-container class
Defines the background area that surrounds the main container.
The following illustrations show:
-
The #main-container style before applying CSS changes.
-
The #main-container style after the background-color property has been changed to green.
| Default CSS | Modified CSS |
|---|---|
![]() #main-container {<br/> display: flex; <br/> align-items: center; <br/> justify-content: center; <br/> padding-top: 25px; <br/> padding-bottom: 25px; <br/>} | ![]() #main-container {<br/> display: flex; <br/> align-items: center; <br/> justify-content: center; <br/> padding-top: 25px; <br/> padding-bottom: 25px; <br/> background-color: green; <br/>} |
Updated 15 days ago


