Defines the main container, and includes the header, content container, and footer.
The following illustrations show:
- The #floating-container style before applying CSS changes.
- The #floating-container style after the background-color property has been changed to orange.
Default CSS |
Modified CSS |
|
|
|
|
#floating-container {
min-width: 400px; background-color: #fff; box-shadow: 1px 1px 5px 2px rgba(0,0,0,0.1); /* height: 100px; */ } |
#floating-container {
min-width: 400px; background-color: orange; box-shadow: 1px 1px 5px 2px rgba(0,0,0,0.1); /* height: 100px; */ } |