#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 {<br/> min-width: 400px; <br/> background-color: #fff; <br/> box-shadow: 1px 1px 5px 2px rgba(0,0,0,0.1); <br/> /* height: 100px; */ <br/>}


#floating-container {<br/> min-width: 400px; <br/> background-color: orange; <br/> box-shadow: 1px 1px 5px 2px rgba(0,0,0,0.1); <br/> /* height: 100px; */ <br/>}