#floating-container class

Defines the main container, and includes the header, content container, and footer.

The following illustrations show: 

  1. The #floating-container style before applying CSS changes.

  2. The #floating-container style after the background-color property has been changed to orange.

Default CSSModified 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; */
}