#logo-class
Used to define the logo that appears at the top of a screen.
The following illustrations show:
-
The logo style before applying CSS changes.
-
The logo style after the background-color property has been changed to black and the min-width property has been changed to 800px.
Default CSS | Modified CSS |
---|---|
#logo { min-width: 400px; } | #logo { min-width: 800px; background-color: black; } |
Updated over 2 years ago