#logo-class

Used to define the logo that appears at the top of a screen. 

The following illustrations show: 

  1. The logo style before applying CSS changes.

  2. The logo style after the background-color property has been changed to black and the min-width property has been changed to 800px.

Default CSSModified CSS


#logo {<br/> min-width: 400px; <br/>}


#logo {<br/> min-width: 800px; <br/> background-color: black; <br/>}