#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 {
min-width: 400px;
}


#logo {
min-width: 800px;
background-color: black;
}